diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2010-12-15 08:28:06 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2010-12-15 08:29:38 +0000 |
commit | 3f3611400168d726e5b84f79fb049b06d19525b1 (patch) | |
tree | 727b15ab501f0b00b57723f2ca4abda252538624 /testing/dmidecode | |
parent | c9f91c97345006458b202aa98b35ebd0734f3f3d (diff) | |
download | aports-3f3611400168d726e5b84f79fb049b06d19525b1.tar.bz2 aports-3f3611400168d726e5b84f79fb049b06d19525b1.tar.xz |
main/dmidecode: moved from testing
flashrom needs it
Diffstat (limited to 'testing/dmidecode')
-rw-r--r-- | testing/dmidecode/APKBUILD | 37 |
1 files changed, 0 insertions, 37 deletions
diff --git a/testing/dmidecode/APKBUILD b/testing/dmidecode/APKBUILD deleted file mode 100644 index 4bd71ec26a..0000000000 --- a/testing/dmidecode/APKBUILD +++ /dev/null @@ -1,37 +0,0 @@ -# Maintainer: Nathan Angelacos <nangel@alpinelinux.org> -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" |