Date: Saturday, September 3, 2022 @ 10:26:36 Author: felixonmars Revision: 1291473
addpkg: uwufetch 1.7-3 Added: uwufetch/ uwufetch/repos/ uwufetch/trunk/ uwufetch/trunk/PKGBUILD ----------+ PKGBUILD | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) Added: uwufetch/trunk/PKGBUILD =================================================================== --- uwufetch/trunk/PKGBUILD (rev 0) +++ uwufetch/trunk/PKGBUILD 2022-09-03 10:26:36 UTC (rev 1291473) @@ -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 +}
