repo-tool/PKGBUILD

21 lines
449 B
Bash

# Maintainer: Sebastian Hugentobler <shu@vanwa.ch>
pkgname=repo-tool
pkgver=0.1.1
pkgrel=1
pkgdesc="Build a tree of pacman packages and build a repo of them."
arch=("any")
url="https://code.vanwa.ch"
license=('MIT')
depends=("pacman" "gnupg" "findutils")
source=(
"repo-tool"
)
sha256sums=("19ac137275aa40daba159c2f086cea4e20edf62b3cddf2b8b3981d3a9de2f12d")
package() {
cd "$srcdir/"
install -Dm 755 repo-tool "$pkgdir/usr/bin/repo-tool"
}