mirror of
https://codeberg.org/kiss-community/repo
synced 2025-02-28 17:46:30 -07:00
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
|