mirror of
https://github.com/outbackdingo/ports.git
synced 2026-01-27 18:20:07 +00:00
16 lines
414 B
Plaintext
16 lines
414 B
Plaintext
# description : System's hardware information of your BIOS according to SMBIOS/DMI standard.
|
|
# homepage : https://www.nongnu.org/dmidecode/
|
|
|
|
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
|
|
}
|