Date: Saturday, September 3, 2022 @ 10:27:02
Author: felixonmars
Revision: 1291474
archrelease: copy trunk to community-x86_64
Added:
uwufetch/repos/community-x86_64/
uwufetch/repos/community-x86_64/PKGBUILD
(from rev 1291473, uwufetch/trunk/PKGBUILD)
----------+
PKGBUILD | 27 +++++++++++++++++++++++++++
1 file changed, 27 insertions(+)
Copied: uwufetch/repos/community-x86_64/PKGBUILD (from rev 1291473,
uwufetch/trunk/PKGBUILD)
===================================================================
--- community-x86_64/PKGBUILD (rev 0)
+++ community-x86_64/PKGBUILD 2022-09-03 10:27:02 UTC (rev 1291474)
@@ -0,0 +1,27 @@
+# Maintainer: Felix Yan <[email protected]>
+# Contributor: Darkpelz <[email protected]>
+# Contributor: TheDarkBug <[email protected]>
+
+pkgname=uwufetch
+pkgver=1.7
+pkgrel=3
+pkgdesc="A meme system info tool for Linux, based on nyan/uwu trend on
r/linuxmasterrace."
+arch=('x86_64')
+url="https://github.com/TheDarkBug/$pkgname"
+license=('GPL3')
+depends=('glibc')
+makedepends=("gcc")
+optdepends=("viu: Display distro logos as images"
+ "lshw: Better GPU detection")
+source=("$pkgname-$pkgver.tar.gz::https://github.com/TheDarkBug/uwufetch/archive/$pkgver.tar.gz")
+sha256sums=("6fa341b68d4c8c4bf4ff12d88ea0a81d35328992530d3747ba6b186095f09554")
+
+build() {
+ cd $pkgname-$pkgver
+ make CC="cc $CFLAGS $LDFLAGS" build
+}
+
+package() {
+ cd $pkgname-$pkgver
+ make DESTDIR="$pkgdir" install
+}