mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-12-31 06:12:14 +01:00
64 lines
1.8 KiB
Plaintext
64 lines
1.8 KiB
Plaintext
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
|
|
pkgname=hwdata
|
|
pkgver=0.282
|
|
pkgrel=0
|
|
pkgdesc="Hardware identification and configuration data"
|
|
url="http://git.fedorahosted.org/git/hwdata.git"
|
|
arch="noarch"
|
|
license="GPL2+"
|
|
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
|
|
install-T.patch"
|
|
|
|
_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 \
|
|
--build=$CBUILD \
|
|
--host=$CHOST \
|
|
--prefix=/usr \
|
|
--sysconfdir=/etc \
|
|
--datadir=/usr/share \
|
|
|| return 1
|
|
# nothing to make
|
|
}
|
|
|
|
package() {
|
|
cd "$_builddir"
|
|
make -j1 DESTDIR="$pkgdir" install || return 1
|
|
# remove modprobe blacklist
|
|
rm -r "$pkgdir"/usr/lib
|
|
}
|
|
|
|
_mv() {
|
|
pkgdesc="$pkgdesc - $1"
|
|
depends=""
|
|
mkdir -p "$subpkgdir"/usr/share/hwdata
|
|
mv "$pkgdir"/usr/share/hwdata/$1 "$subpkgdir"/usr/share/hwdata
|
|
}
|
|
|
|
usb() { replaces="usbutils"; _mv usb.ids; }
|
|
pci() { replaces="pciutils"; _mv pci.ids; }
|
|
pnp() { _mv pnp.ids; }
|
|
oui() { _mv oui.txt; }
|
|
|
|
md5sums="b39de3fe0ae374ec862199b8c913490a hwdata-0.282.tar.bz2
|
|
14378caaaad45f700cbd78feb3244232 install-T.patch"
|
|
sha256sums="6fdff24b8ea122f918ccca5b11575cacfe030d0e0fcc3dda0ba25d097a83ffa3 hwdata-0.282.tar.bz2
|
|
003160c58024a4d299561c6a9ae199ce91ae375643a74d0aee3893e42669dc17 install-T.patch"
|
|
sha512sums="a26e736438046d47864755b6c27f06c8fa5fbbf258dfe2ab0f1ee0476119c2e83b1880b79069dd8c72dbf4763b9bc0c57ea202597ce1e189b6b91fe93a3bc745 hwdata-0.282.tar.bz2
|
|
88a786d8feb5c8b7de587ac70f3e4307d10ac5ed9b0edfc8711de1ba51808ca33a76df518cb5a508215c309289a079a778a91c3e6fc359d644d230de8d23f049 install-T.patch"
|