diff options
Diffstat (limited to 'repo/rsync/rsync.xibuild')
-rw-r--r-- | repo/rsync/rsync.xibuild | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/repo/rsync/rsync.xibuild b/repo/rsync/rsync.xibuild new file mode 100644 index 0000000..8e09cfa --- /dev/null +++ b/repo/rsync/rsync.xibuild @@ -0,0 +1,18 @@ +#!/bin/sh + +MAKEDEPS="make " +DEPS="acl lz4 openssl perl popt xxhash zlib zstd" + +PKG_VER=3.2.3 +SOURCE=https://www.samba.org/ftp/rsync/src/rsync-$PKG_VER.tar.gz +DESC="A utility that provides fast incremental file transfer" + +build () { + ./configure --prefix=/usr --disable-md2man --disable-lz4 --disable-xxhash --without-included-zlib && + make +} + +package () { + make DESTDIR=$PKG_DEST install +} + |