diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2012-10-24 06:32:28 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2012-10-24 06:32:28 +0000 |
commit | c64ea16dce848a328da4f289eab769480a9a74ee (patch) | |
tree | 8c4ae533fa0c371ace5b596eb374f7e6023b1419 | |
parent | 81564624cba2541e226d930313373e34792c2295 (diff) | |
download | aports-c64ea16dce848a328da4f289eab769480a9a74ee.tar.bz2 aports-c64ea16dce848a328da4f289eab769480a9a74ee.tar.xz |
testing/hwdata: new aport
Hardware identification and configuration data
http://git.fedorahosted.org/git/hwdata.git
-rw-r--r-- | testing/hwdata/APKBUILD | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/testing/hwdata/APKBUILD b/testing/hwdata/APKBUILD new file mode 100644 index 0000000000..d6bb344f60 --- /dev/null +++ b/testing/hwdata/APKBUILD @@ -0,0 +1,53 @@ +# Maintainer: Natanael Copa +pkgname=hwdata +pkgver=0.240 +pkgrel=0 +pkgdesc="Hardware identification and configuration data" +url="http://git.fedorahosted.org/git/hwdata.git" +arch="noarch" +license="GPLv2+" +makedepends="bash" +install="" +subpackages="$pkgname-usb $pkgname-pci $pkgname-pnp $pkgname-oui" +depends="$subpackages" +source="http://fedorahosted.org/releases/h/w/hwdata/hwdata-$pkgver.tar.bz2" + +_builddir="$srcdir"/hwdata-$pkgver +prepare() { + local i + cd "$_builddir" + for i in $source; do + case $i in + *.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;; + esac + done +} + +build() { + cd "$_builddir" + ./configure --prefix=/usr \ + --sysconfdir=/etc \ + --datadir=/usr/share \ + || return 1 + # nothing to make +} + +package() { + cd "$_builddir" + make DESTDIR="$pkgdir" install || return 1 + # remove modprobe blacklist + rm -r "$pkgdir"/etc/ +} + +_mv() { + pkgdesc="$pkgdesc - $1" + mkdir -p "$subpkgdir"/usr/share/hwdata + mv "$pkgdir"/usr/share/hwdata/$1 "$subpkgdir"/usr/share/hwdata +} + +usb() { _mv usb.ids; } +pci() { _mv pci.ids; } +pnp() { _mv pnp.ids; } +oui() { _mv oui.txt; } + +md5sums="e7fbd88a28a6acea05feb6064bb49f2c hwdata-0.240.tar.bz2" |