# Maintainer: Nathan Angelacos pkgname=dmidecode pkgver=2.9 pkgrel=0 pkgdesc="A utility for reporting system hardware as described by BIOS" url="http://www.nongnu.org/dmidecode" arch="x86 x86_64" license="GPL" depends= makedepends= subpackages="$pkgname-doc" source="http://mirror.its.uidaho.edu/pub/savannah/dmidecode/dmidecode-${pkgver}.tar.gz" _builddir="$srcdir"/$pkgname-$pkgver prepare() { cd "$_builddir" # apply patches here for i in "$srcdir"/*.patch; do [ -f "$i" ] || continue msg "Applying $i" patch -p1 -i "$i" || return 1 done sed '/^PROGRAMS !=/d' -i Makefile } build() { cd "$_builddir" make prefix=/usr || return 1 } package() { cd "$_builddir" make prefix=/usr DESTDIR="${pkgdir}" install } md5sums="1f804692168178c19a8ec86d147fbc77 dmidecode-2.9.tar.gz"