12 lines
173 B
Plaintext
12 lines
173 B
Plaintext
|
#!/bin/sh -e
|
||
|
|
||
|
export CFLAGS="$CFLAGS -static"
|
||
|
|
||
|
./configure \
|
||
|
--prefix=/usr \
|
||
|
--mandir=/usr/share/man \
|
||
|
--infodir=/usr/share/info
|
||
|
|
||
|
make
|
||
|
make DESTDIR="$1" install
|