This commit is contained in:
echo 2022-09-26 11:55:16 +03:30 committed by nea
parent 0b28a01506
commit 9909241c1f
No known key found for this signature in database
GPG key ID: AA563E93EB628D91
6 changed files with 193 additions and 130 deletions

22
PKGBUILD Normal file
View file

@ -0,0 +1,22 @@
pkgbase=neowofetch-git
pkgname=$pkgbase
pkgver=r539.084603b
pkgrel=1
depends=(go)
arch=(x86_64)
source=("git+https://github.com/exhq/neOWOfetch.git")
sha256sums=('SKIP')
pkgver() {
cd $srcdir/neOWOfetch
printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
}
build() {
cd $srcdir/neOWOfetch
go build go.main
}
package() {
install -Dm755 $srcdir/neOWOfetch/neowofetch $pkgdir/usr/bin/neowofetch
}