summaryrefslogtreecommitdiff
path: root/repo/util/rsync.xibuild
blob: f7001391b866a59d9ea99a8af6f1ac012a0e97ef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/bin/sh

MAKEDEPS="make "
DEPS="acl lz4 libressl 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
}