forked from kiss-community/repo
14 lines
231 B
Bash
Executable File
14 lines
231 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
export CFLAGS="-static $CFLAGS"
|
|
|
|
sed -i 's/perl/awk -f/;s/mkproto.pl/mkproto.awk/' Makefile.in
|
|
|
|
./configure \
|
|
--prefix=/usr \
|
|
--with-included-popt \
|
|
--without-included-zlib
|
|
|
|
make
|
|
make DESTDIR="$1" install
|