initial commit

This commit is contained in:
Sebastian Hugentobler 2023-06-22 09:49:39 +02:00
commit a98c64521d
Signed by: shu
GPG key ID: BB32CF3CA052C2F0
3 changed files with 81 additions and 0 deletions

20
PKGBUILD Normal file
View file

@ -0,0 +1,20 @@
# Maintainer: Sebastian Hugentobler <shu@vanwa.ch>
pkgname=repo-tool
pkgver=0.1.0
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=("9eae4888a23637580d2323678ba0218bdce2d924e381ddbe2b0114b4a8dbe408")
package() {
cd "$srcdir/"
install -Dm 755 repo-tool "$pkgdir/usr/bin/repo-tool"
}