mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-03-28 00:42:25 +01:00
28 lines
898 B
Plaintext
28 lines
898 B
Plaintext
# Contributor: Johannes Heimansberg <git@jhe.dedyn.io>
|
|
# Contributor: Daniel Hejduk <danielhejduk@disroot.org>
|
|
# Maintainer: Daniel Hejduk <danielhejduk@disroot.org>
|
|
pkgname=pfetch
|
|
pkgver=1.7.0
|
|
pkgrel=0
|
|
pkgdesc="System information tool written in POSIX sh"
|
|
url="https://github.com/Un1q32/pfetch"
|
|
arch="noarch"
|
|
license="MIT"
|
|
subpackages="$pkgname-doc"
|
|
source="$pkgname-$pkgver.tar.gz::https://github.com/Un1q32/pfetch/archive/$pkgver.tar.gz"
|
|
|
|
check() {
|
|
./pfetch # Run the program
|
|
}
|
|
|
|
package() {
|
|
install -Dm755 pfetch "$pkgdir"/usr/bin/pfetch
|
|
install -Dm644 README.md -t "$pkgdir/usr/share/doc/$pkgname/"
|
|
install -Dm644 LICENSE -t "$pkgdir/usr/share/licenses/$pkgname/"
|
|
install -Dm644 pfetch.1 -t "$pkgdir/usr/share/man/man1/"
|
|
}
|
|
|
|
sha512sums="
|
|
8fa9990ceb0b0b9a4b21ceb4f80b2e024d9518807c8c9642f8156152fff61ca499d946243206e0a383ff8ad752dfc24bf6610035a98b747468557a73d3c27a66 pfetch-1.7.0.tar.gz
|
|
"
|