blob: 65c7c5db17774fe430327126838dcf0a78226f26 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
# Maintainer: Darkpelz
pkgname=uwufetch-git
pkgver=r50.ee22b5d
pkgrel=1
pkgdesc="A meme system info tool for Linux, based on nyan/uwu trend on r/linuxmasterrace."
arch=('any')
url="https://github.com/TheDarkBug/${pkgname/-git/}"
license=('GPL3')
makedepends=("gcc")
source=("$pkgname"::'git+https://github.com/TheDarkBug/uwufetch.git')
sha256sums=("SKIP")
pkgver() {
cd "$srcdir/${pkgname/-git/}"
printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
}
build() {
cd "$srcdir/${pkgname/-git/}"
make build
}
package() {
cd "$srcdir/${pkgname/-git/}"
install -D "uwufetch" "$pkgdir/usr/bin/uwufetch"
}
|