21 lines
449 B
Bash
21 lines
449 B
Bash
|
# 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"
|
||
|
}
|