17 lines
459 B
Plaintext
17 lines
459 B
Plaintext
# Description: System's hardware information of your BIOS according to SMBIOS/DMI standard.
|
|
# URL: https://www.nongnu.org/dmidecode/
|
|
# Maintainer: Danny Rawlins, crux at romster dot me
|
|
|
|
name=dmidecode
|
|
version=3.5
|
|
release=1
|
|
source=(https://download.savannah.gnu.org/releases/$name/$name-$version.tar.xz)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
|
|
make prefix=/usr CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}"
|
|
make prefix=/usr DESTDIR=$PKG install
|
|
rm -r $PKG/usr/share/doc
|
|
}
|