core/rsync/Pkgfile
2015-07-25 21:13:14 +02:00

29 lines
797 B
Plaintext

# Description: Utility for incremental file transfers over networks
# URL: http://rsync.samba.org
# Maintainer: CRUX System Team, core-ports at crux dot nu
# Depends on: acl
name=rsync
version=3.1.1
release=3
source=(http://rsync.samba.org/ftp/$name/src/$name-$version.tar.gz \
rsyncd.conf rsyncd rsync.driver)
build () {
cd $name-$version
./configure --prefix=/usr \
--with-rsh=ssh \
--with-included-popt \
--with-included-zlib
make
make DESTDIR=$PKG install
install -d $PKG/etc/{rc.d,ports/drivers} $PKG/var/log
install -m 755 $SRC/rsyncd $PKG/etc/rc.d
install -m 644 $SRC/rsyncd.conf $PKG/etc
install -m 755 $SRC/rsync.driver $PKG/etc/ports/drivers/rsync
touch $PKG/var/log/rsyncd.log
}