blob: 52e907623244cddf89f8f3d2b0bd4484e0d3a56c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# Contributor: Dawid Dziurla <dawidd0811@gmail.com>
# Maintainer: Dawid Dziurla <dawidd0811@gmail.com>
pkgname=neofetch
pkgver=3.4.0
pkgrel=0
pkgdesc="A CLI system information tool written in Bash that supports displaying images"
url="https://github.com/dylanaraps/neofetch"
arch="noarch"
license="MIT"
depends="bash"
makedepends="make"
options="!check"
subpackages="$pkgname-doc"
source="$pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz"
builddir="$srcdir/$pkgname-$pkgver"
package() {
cd "$builddir"
make DESTDIR="$pkgdir" install
}
sha512sums="931648e8173eb91fdf5c79b5bb9b6efef132d30cf2f10d6f75dcff42f3661d40ceec712c109e90e2226e1aa85cad7676c438b6cad49e8298a77d990d9a3d197b neofetch-3.4.0.tar.gz"
|