blob: 51817ff13ca7e9dfc5daf470d7ff0866af7d89cc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#!/bin/sh -e
# For some reason they changed the place of this file to be in the include/
# directory, but the location on the filesystem is not updated
mv config.h.in include/
./configure \
--prefix=/usr \
--bindir=/usr/bin \
--disable-documentation \
--disable-backtrace \
--disable-zstd
make
make DESTDIR="$1" install
|