void-packages/srcpkgs/rsync/template

39 lines
1.1 KiB
Bash

# Template file for 'rsync'
pkgname=rsync
version=3.2.7
revision=2
build_style=gnu-configure
configure_args="--with-included-zlib=no --with-rrsync"
conf_files="/etc/rsyncd.conf"
hostmakedepends="perl python3-commonmark"
makedepends="zlib-devel acl-devel popt-devel xxHash-devel liblz4-devel
openssl-devel libzstd-devel"
short_desc="Remote fast incremental file transfer tool"
maintainer="Leah Neukirchen <leah@vuxu.org>"
license="GPL-3.0-only"
homepage="https://rsync.samba.org/"
changelog="https://download.samba.org/pub/rsync/NEWS"
distfiles="https://www.samba.org/ftp/rsync/src/rsync-$version.tar.gz"
checksum=4e7d9d3f6ed10878c58c5fb724a67dacf4b6aac7340b13e488fb2dc41346f2bb
# Force enable IPv6 on musl - upstream bug https://bugzilla.samba.org/show_bug.cgi?id=10715
CFLAGS="-DINET6"
if [ "$CROSS_BUILD" ]; then
configure_args+=" --disable-simd"
fi
pre_check() {
# chgrp tests fail inside chroot
rm -f testsuite/chgrp.test
}
post_install() {
vconf ${FILESDIR}/rsyncd.conf
vsv rsyncd
vbin support/nameconvert
vbin support/json-rsync-version
vbin support/rsyncstats
}