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

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
}