blob: 1d454c81e57c6777b7cfeea3011495ab0efac72c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#!/bin/bash
DEPS=(sh)
SOURCE=https://www.samba.org/ftp/rsync/src/rsync-3.2.3.tar.gz
DESC="A utility that provides fast incremental file transfer"
build () {
./configure --prefix=/usr --disable-md2man --disable-xxhash --without-included-zlib &&
make
make DESTDIR=$PKG_DEST install
}
|