# Maintainer: Daniel Langbein _pkgname=repo _reponame=arch pkgname="de-p1st-$_pkgname" pkgver=0.1.5 pkgrel=1 pkgdesc="Bash script to manage remote Arch Linux repository" arch=('any') url="https://codeberg.org/privacy1st/${_reponame}" license=('MIT') groups=() depends=('openssh' 'bash' 'aurutils') # arch-repo-vercmp uses "aur vercmp" which is part of "aurutils" makedepends=('git') optdepends=() provides=() conflicts=() replaces=() backup=() options=() install= changelog= source=("git+${url}.git") noextract=() sha256sums=('SKIP') package() { cd "${_reponame}/pkg/${pkgname}" install -Dm0555 arch-repo-push-new.sh "$pkgdir"/usr/bin/arch-repo-push-new install -Dm0555 arch-repo-receive-new.sh "$pkgdir"/usr/bin/arch-repo-receive-new install -Dm0555 arch-repo-vercmp.sh "$pkgdir"/usr/bin/arch-repo-vercmp install -Dm0644 arch-repo.cfg "$pkgdir"/etc/de-p1st-repo/arch-repo.cfg chown 0:0 "$pkgdir"/etc/de-p1st-repo/arch-repo.cfg }