mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-30 21:12:27 +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=1.00
|
|
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="
|
|
94be5c5aacf9e5cde4fd4e4b14e433db523821fc27466c599e34c062ca32145edb0c8f84168e07c8a64f591fee1f5ab704d569bb70c53b7523d52f4882b573a1 cpufetch-1.00.tar.gz
|
|
"
|