blob: e6ba5870c27074218f9fcd8b76f70c4ecd932933 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#!/bin/bash
DEPS=(sh)
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
}
|