blob: e53fc8678bd716ad1ba603f2b45c30691f01e17e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#!/bin/sh -e
autoreconf -fi
export PKG_CONFIG="pkgconf --static"
./configure \
--prefix=/usr \
--sbindir=/usr/bin \
--without-xz \
--disable-shared
make CCLD="${CC:-cc} --static"
make DESTDIR="$1" install
|