repo-tool/PKGBUILD

21 lines
449 B
Bash
Raw Normal View History

2023-06-22 07:49:39 +00:00
# Maintainer: Sebastian Hugentobler <shu@vanwa.ch>
pkgname=repo-tool
2023-08-20 08:33:06 +00:00
pkgver=0.1.1
2023-06-22 07:49:39 +00:00
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"
)
2023-08-20 08:33:06 +00:00
sha256sums=("19ac137275aa40daba159c2f086cea4e20edf62b3cddf2b8b3981d3a9de2f12d")
2023-06-22 07:49:39 +00:00
package() {
cd "$srcdir/"
install -Dm 755 repo-tool "$pkgdir/usr/bin/repo-tool"
}