initial commit

This commit is contained in:
Sebastian Hugentobler 2023-06-22 09:44:34 +02:00
commit ce4fcbd465
Signed by: shu
GPG key ID: BB32CF3CA052C2F0
3 changed files with 82 additions and 0 deletions

20
PKGBUILD Normal file
View file

@ -0,0 +1,20 @@
# 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"
}