21 lines
428 B
Bash
21 lines
428 B
Bash
# Maintainer: Sebastian Hugentobler <shu@vanwa.ch>
|
|
|
|
pkgname=aur-update
|
|
pkgver=0.1.1
|
|
pkgrel=1
|
|
pkgdesc="Simple updater for local aur repositories."
|
|
arch=("any")
|
|
url="https://code.vanwa.ch"
|
|
license=('MIT')
|
|
depends=("git" "base-devel")
|
|
source=(
|
|
"aur-update"
|
|
)
|
|
sha256sums=("81ca6091220a622a4d240b473093d9c5891d04c536861efbc38ec05bd5f1a2d4")
|
|
|
|
package() {
|
|
cd "$srcdir/"
|
|
|
|
install -Dm 755 aur-update "$pkgdir/usr/bin/aur-update"
|
|
}
|