mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-02-04 23:42:07 +01:00
27 lines
767 B
Plaintext
27 lines
767 B
Plaintext
# Contributor: Milan P. Stanić <mps@arvanta.net>
|
|
# Maintainer: Milan P. Stanić <mps@arvanta.net>
|
|
pkgname=cpufetch
|
|
pkgver=0.98
|
|
pkgrel=0
|
|
pkgdesc="simple yet fancy CPU architecture fetching tool"
|
|
url="https://github.com/Dr-Noob/cpufetch"
|
|
arch="x86_64 armhf armv7 aarch64" # x86 missing asm/hwcap.h
|
|
license="MIT"
|
|
options="!check" # no test
|
|
makedepends="linux-headers"
|
|
subpackages="$pkgname-doc"
|
|
source="$pkgname-$pkgver.tar.gz::https://github.com/Dr-Noob/cpufetch/archive/refs/tags/v$pkgver.tar.gz"
|
|
|
|
build() {
|
|
make
|
|
}
|
|
|
|
package() {
|
|
make DESTDIR="$pkgdir" install
|
|
rm -rf "$pkgdir"/usr/share/licenses
|
|
}
|
|
|
|
sha512sums="
|
|
e862a0b6472d4942a58359b203037391747f74d991ea71e77a64369695f39e3d9ab8d60c5888703683ce5258426f5211f9e54863649ad796e08c083888d9b076 cpufetch-0.98.tar.gz
|
|
"
|