26 lines
578 B
Bash
26 lines
578 B
Bash
# Maintainer: Maximilian Keßler <git@maximilian-kessler.de>
|
|
#
|
|
|
|
pkgname=deploy-arch-repo
|
|
pkgver=r123.152fe36
|
|
pkgrel=1
|
|
pkgdesc="Deploy packages to remote arch repo via rsync"
|
|
arch=(any)
|
|
url="https://git.abstractnonsen.se/arch/deploy-arch-repo"
|
|
license=("MIT")
|
|
depends=("rsync" "pacman")
|
|
makedepends=("git")
|
|
source=("$pkgname::git+https://git.abstractnonsen.se/arch/deploy-arch-repo")
|
|
sha512sums=("SKIP")
|
|
|
|
|
|
pkgver() {
|
|
cd "$pkgname"
|
|
|
|
printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
|
|
}
|
|
|
|
package() {
|
|
cd "$pkgname"
|
|
cp deploy-arch-repo /usr/bin
|
|
}
|