# Maintainer: mark.blakeney at bullet-systems dot net pkgname=pacpush pkgver=2.17 pkgrel=1 pkgdesc="Utility to push an Arch hosts package and AUR caches to other hosts" url="https://github.com/bulletmark/$pkgname" license=("GPL3") arch=("any") depends=("python>=3.6" "rsync" "sudo" "openssh" "python-requests" "python-ruamel-yaml" "python-rich" "python-packaging") makedepends=(python-setuptools python-build python-installer python-wheel) source=("$pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz") replaces=("pacsync") conflicts=("pacsync") sha1sums=('df28db402207c610b978399c89e0bfbbe0b35ed6') build() { cd "$srcdir/$pkgname-$pkgver" python -m build --wheel --no-isolation } package() { cd "$srcdir/$pkgname-$pkgver" python -m installer --destdir="$pkgdir" dist/*.whl } # vim:set ts=2 sw=2 et: