blob: 3ff429b21eb21d4717642eee6af8779963cf470b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# Maintainer: A. Wilcox <awilfox@adelielinux.org>
pkgname=dmidecode
pkgver=3.4
pkgrel=0
pkgdesc="Utility for gathering information about system hardware"
url="https://www.nongnu.org/dmidecode"
arch="all"
options="!check" # No test suite.
license="GPL-2.0-only"
depends=""
makedepends=""
subpackages="$pkgname-doc"
source="https://download.savannah.gnu.org/releases/dmidecode/dmidecode-$pkgver.tar.xz"
build() {
make prefix=/usr
}
package() {
make prefix=/usr DESTDIR="$pkgdir" install
}
sha512sums="62990b6159e5a7c8688d37e44957e7948391d2c6afeabaa4514ba9dad2d08b020297676e2dbbfcb6471efc6fb6f3682750422931a953f78f358bb3dd3745e95b dmidecode-3.4.tar.xz"
|