blob: 3a3e777c2bc1acd7eaf51a4f1af8e14bea0e1e12 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#!/bin/sh -e
export LDFLAGS="$LDFLAGS -static"
export PKG_CONFIG="pkgconf --static"
./configure \
--prefix=/usr \
--mandir=/usr/share/man
make all
make DESTDIR="$1" install
|