mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-05 08:42:11 +01:00
70 lines
2.3 KiB
Plaintext
70 lines
2.3 KiB
Plaintext
# Contributor: Leonardo Arena <rnalrd@alpinelinux.org>
|
|
# Maintainer: Leonardo Arena <rnalrd@alpinelinux.org>
|
|
pkgname=pciutils
|
|
pkgver=3.3.1
|
|
pkgrel=0
|
|
pkgdesc="PCI bus configuration space access library and tools"
|
|
url="http://mj.ucw.cz/pciutils.html"
|
|
arch="all"
|
|
license="GPL"
|
|
depends="hwdata-pci"
|
|
makedepends="linux-headers"
|
|
install=
|
|
subpackages="$pkgname-doc $pkgname-dev $pkgname-libs"
|
|
source="http://www.kernel.org/pub/software/utils/$pkgname/$pkgname-$pkgver.tar.gz
|
|
fix-linking-pci-malloc-Makefile.patch
|
|
pread.patch
|
|
"
|
|
|
|
_builddir="$srcdir"/$pkgname-$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"
|
|
sed -i -e "106s/^/\#/" Makefile
|
|
make ZLIB=no \
|
|
SHARED=yes \
|
|
PREFIX=/usr \
|
|
SHAREDIR=/usr/share/hwdata \
|
|
MANDIR=/usr/share/man \
|
|
all || return 1
|
|
}
|
|
|
|
package() {
|
|
cd "$_builddir"
|
|
make PREFIX="$pkgdir"/usr \
|
|
SHARED=yes \
|
|
SHAREDIR="$pkgdir"/usr/share/hwdata \
|
|
MANDIR="$pkgdir"/usr/share/man \
|
|
install
|
|
|
|
install -d "$pkgdir"/usr/lib
|
|
ln -s libpci.so.${pkgver%%.*} "$pkgdir"/usr/lib/libpci.so || return 1
|
|
install -D -m 644 lib/libpci.pc "$pkgdir"/usr/lib/pkgconfig/libpci.pc \
|
|
|| return 1
|
|
for i in config.h header.h pci.h types.h; do
|
|
install -D -m 644 lib/${i} "$pkgdir"/usr/include/pci/${i} \
|
|
|| return 1
|
|
done
|
|
|
|
}
|
|
|
|
md5sums="86d5462e5cfc2a4341a2b91ce3ed0f09 pciutils-3.3.1.tar.gz
|
|
f56647a25dd1cfe80f6141914c2c0591 fix-linking-pci-malloc-Makefile.patch
|
|
c6a4ba5d34824a53cb0035bc2d1ca0f8 pread.patch"
|
|
sha256sums="39611a9bddd5c2a0baea925b1c41f88796a3e6709c179d539ee3f0c226685c0b pciutils-3.3.1.tar.gz
|
|
75ff5022e6a223297aa51ffcee80e6fa58bae839d0ae3ae2861013cabce6fba8 fix-linking-pci-malloc-Makefile.patch
|
|
8ebd84f0d84c3f2935bbe0ed9ec8c186f448803888c3791ca8e4253177c1f7f9 pread.patch"
|
|
sha512sums="d0335010ab465a5ca7e13a730a893d4658c5b1cf8c4e71468d057abdaa480310909d9c9a04d9984fb56ca24d16278895b5410b5daea1760b096ed982eae6ee7c pciutils-3.3.1.tar.gz
|
|
520b39602078e4325d7dac2d460547b360f7b52c668d88cf3d776c59246c8cfcb537b7b4f50575da9d2fcea1e207b3e99626ce4f23df890d2565b7dac1db2d94 fix-linking-pci-malloc-Makefile.patch
|
|
aa1d3272500180256929b39a5fc4ea38ddb6a9fad090d732832ded9cc396303cf56efc91cfdeb76edbcfefc9a7c8eb058562c3c2b09a9090a59d3e68c27cec62 pread.patch"
|