18 lines
475 B
Plaintext
18 lines
475 B
Plaintext
# Description: System's hardware information of your BIOS according to SMBIOS/DMI standard.
|
|
# URL: http://www.nongnu.org/dmidecode/
|
|
# Maintainer: Victor Martinez, pitillo at ono dot com
|
|
# Depends on:
|
|
|
|
name=dmidecode
|
|
version=2.9
|
|
release=2
|
|
source=(http://download.savannah.gnu.org/releases/$name/$name-$version.tar.gz)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
sed -e 's|/usr/local|/usr|' -e 's|/share/man|/man|' -i Makefile
|
|
make
|
|
make DESTDIR=$PKG install
|
|
rm -rf $PKG/usr/share
|
|
}
|