blob: c9e7c6d827b97f2e28e6a6c81a520df08f7170e5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#!/bin/sh -e
export LDFLAGS="$LDFLAGS -static"
./configure \
--prefix=/usr \
--enable-single-binary=symlinks \
--with-packager="Carbs Linux" \
--without-libgmp \
--disable-libcap \
--disable-nls
make
make DESTDIR="$1" install
|