21 lines
428 B
Bash
21 lines
428 B
Bash
|
# Maintainer: Sebastian Hugentobler <shu@vanwa.ch>
|
||
|
|
||
|
pkgname=aur-update
|
||
|
pkgver=0.1.0
|
||
|
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=("f4e09dfe9753a26b90df2f8ba463f2856b2cd82268c5f13d8551391bc03f8c79")
|
||
|
|
||
|
package() {
|
||
|
cd "$srcdir/"
|
||
|
|
||
|
install -Dm 755 aur-update "$pkgdir/usr/bin/aur-update"
|
||
|
}
|