rsync: syntax

This commit is contained in:
Tim Biermann 2021-12-13 11:53:13 +01:00
parent 990aa6cfbf
commit ca88d6254c
Signed by: tb
GPG Key ID: 42F8B4E30B673606
2 changed files with 22 additions and 22 deletions

View File

@ -1,6 +1,6 @@
untrusted comment: verify with /etc/ports/core.pub
RWRJc1FUaeVeqva8Cbmbv1lzP2SlEmKVj/1gKwCpm3YGNLXhL+Y6AHvtXKoLBUHe8uCii2sZVHAoP2xGfvR6EFvBaahrBl4QsQg=
SHA256 (Pkgfile) = 23606a548b9ebf05f57a41616622fd31195d6bdd4c8ad21ec0091642bbf4847a
RWRJc1FUaeVeqlzqO04w21qNV2qI91JVAmpFuk4F/sB3oZxwzmRjMVconh0k8cehe8RDVJYceNqokCsfVb8ctMHmMTqAdwM5wwk=
SHA256 (Pkgfile) = 19f542fbfe12605da4d4e821e3d24d9512fa0de593680c1d01e4c344564483c2
SHA256 (.footprint) = bf468272af3c29c8b4b4d150730c23071cf0093dc06172548b7dbddaeee6c3c3
SHA256 (rsync-3.2.3.tar.gz) = becc3c504ceea499f4167a260040ccf4d9f2ef9499ad5683c179a697146ce50e
SHA256 (rsyncd.conf) = 095447801d8ba0101809c18acfb5a492c65323bed9ef5dd3739b3af5e9f7c56d

View File

@ -1,31 +1,31 @@
# Description: Utility for incremental file transfers over networks
# URL: https://rsync.samba.org
# Maintainer: CRUX System Team, core-ports at crux dot nu
# Depends on: acl openssl zlib
# URL: https://rsync.samba.org
# Maintainer: CRUX System Team, core-ports at crux dot nu
# Depends on: acl openssl zlib
name=rsync
version=3.2.3
release=1
source=(https://download.samba.org/pub/rsync/$name-$version.tar.gz \
rsyncd.conf rsyncd rsync.driver)
source=(https://download.samba.org/pub/rsync/$name-$version.tar.gz
rsyncd.conf rsyncd rsync.driver)
build () {
cd $name-$version
cd $name-$version
./configure --prefix=/usr \
--with-rsh=ssh \
--with-included-zlib=no \
--with-included-popt=yes \
--disable-xxhash \
--disable-lz4 \
--disable-zstd
./configure --prefix=/usr \
--with-rsh=ssh \
--with-included-zlib=no \
--with-included-popt=yes \
--disable-xxhash \
--disable-lz4 \
--disable-zstd
make
make DESTDIR=$PKG install
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
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
}