mirror of
https://codeberg.org/kiss-community/repo
synced 2024-11-15 19:20:10 -07:00
16 lines
320 B
Bash
Executable File
16 lines
320 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
# Swap to awk script instead of perl script
|
|
# for building rsync. See files/mkproto.awk.
|
|
sed -i 's/perl/awk -f/;s/mkproto.pl/mkproto.awk/' Makefile.in
|
|
|
|
export CFLAGS="-static $CFLAGS"
|
|
|
|
./configure \
|
|
--prefix=/usr \
|
|
--with-included-popt \
|
|
--without-included-zlib
|
|
|
|
make
|
|
make DESTDIR="$1" install
|