From c8b5413975af6e727f609d238dcdb445069045c8 Mon Sep 17 00:00:00 2001 From: Yingjie Wang Date: Tue, 12 Nov 2024 15:30:17 -0500 Subject: [PATCH] new: misc/neofetch-7.1.0 --- misc/neofetch-7.1.0.PKGBUILD | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 misc/neofetch-7.1.0.PKGBUILD diff --git a/misc/neofetch-7.1.0.PKGBUILD b/misc/neofetch-7.1.0.PKGBUILD new file mode 100644 index 0000000..cf949f3 --- /dev/null +++ b/misc/neofetch-7.1.0.PKGBUILD @@ -0,0 +1,19 @@ +pkgname="neofetch" +pkgver="2.1.0" +pkgdesc="A CLI system information tool written in BASH that supports displaying images." +arch=('any') +homepage="https://github.com/dylanaraps/neofetch" +license=('MIT') +sources=("7.1.0.tar.gz") +urls=("https://github.com/dylanaraps/neofetch/archive/refs/tags/7.1.0.tar.gz") +md5sums=("37ba9026fdd353f66d822fdce16420a8") + +src_prepare() { + tar -xf ${DIST_DIR}/${pkgname}-${pkgver}/${sources[0]} --strip-components=1 +} + +src_install() { + make DESTDIR="$pkgdir" install + install -Dm644 LICENSE.md "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE.md" +} +