diff options
author | A. Wilcox <AWilcox@Wilcox-Tech.com> | 2018-02-12 17:04:33 -0600 |
---|---|---|
committer | William Pitcock <nenolod@dereferenced.org> | 2018-02-19 09:26:26 +0000 |
commit | 68058cbcceaea129b6a442de851bdb6df1999b69 (patch) | |
tree | 7f95e9a45f1430fb7fbe6a88b78852256cbd741c /main/rsync | |
parent | d9c872c52ac46e8d2ac2e4978eecb9609f28ced5 (diff) | |
download | aports-68058cbcceaea129b6a442de851bdb6df1999b69.tar.bz2 aports-68058cbcceaea129b6a442de851bdb6df1999b69.tar.xz |
main/rsync: add xattr support, check, split -openrc
Diffstat (limited to 'main/rsync')
-rw-r--r-- | main/rsync/APKBUILD | 17 |
1 files changed, 12 insertions, 5 deletions
diff --git a/main/rsync/APKBUILD b/main/rsync/APKBUILD index 4640a44dad..c2bb499b35 100644 --- a/main/rsync/APKBUILD +++ b/main/rsync/APKBUILD @@ -1,14 +1,14 @@ # Maintainer: Natanael Copa <ncopa@alpinelinux.org> pkgname=rsync pkgver=3.1.3 -pkgrel=0 +pkgrel=1 pkgdesc="A file transfer program to keep remote files in sync" url="https://rsync.samba.org/" arch="all" +options="!checkroot" license="GPL-3.0" -options="!check" # included test suite fails some tests -makedepends="perl acl-dev popt-dev" -subpackages="$pkgname-doc rrsync" +makedepends="perl acl-dev attr-dev popt-dev" +subpackages="$pkgname-doc $pkgname-openrc rrsync" source="https://download.samba.org/pub/$pkgname/$pkgname-$pkgver.tar.gz rsyncd.initd rsyncd.confd @@ -36,10 +36,17 @@ build() { --prefix=/usr \ --sysconfdir=/etc \ --mandir=/usr/share/man \ - --localstatedir=/var + --localstatedir=/var \ + --enable-acl-support \ + --enable-xattr-support make } +check() { + cd "$builddir" + make check +} + package() { cd "$builddir" make DESTDIR="$pkgdir" install |