2
0
mirror of https://codeberg.org/kiss-community/repo synced 2024-07-07 16:32:28 +00:00
repo/extra/rsync/build

20 lines
392 B
Plaintext
Raw Normal View History

2019-07-11 16:03:03 +00:00
#!/bin/sh -e
2020-02-27 14:56:25 +00:00
# Swap to awk script instead of perl script
# for building rsync. See files/mkproto.awk.
2021-07-03 20:39:59 +00:00
sed 's/perl/awk -f/;s/mkproto.pl/mkproto.awk/' Makefile.in > _
mv -f _ Makefile.in
2020-02-27 14:56:25 +00:00
export CFLAGS="-static $CFLAGS"
2019-07-11 16:03:03 +00:00
./configure \
2019-07-11 16:05:40 +00:00
--prefix=/usr \
--with-included-popt \
2020-06-20 07:35:11 +00:00
--disable-xxhash \
--disable-zstd \
--disable-lz4 \
--without-included-zlib
2019-07-11 16:03:03 +00:00
make
2021-07-18 03:10:00 +00:00
make install