blob: d64807d7a753b94c51ca2b013e30ec9ac723fdf5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
# Maintainer (arch): Tobias Powalowski <tpowa@archlinux.org>
# Contributor: Luke Shumaker <lukeshu@parabola.nu>
# Contributor: bill-auger <bill-auger@programmer.net>
pkgname=pciutils
pkgver=3.7.0
pkgrel=2
pkgdesc="PCI bus configuration space access library and tools"
arch=(x86_64)
arch+=(i686)
license=('GPL2')
url="https://mj.ucw.cz/sw/pciutils/"
depends=('glibc' 'hwdata' 'kmod')
#makedepends=('git') # FIXME: declared, but unused upstream ('pciutils')
source=(#ftp://ftp.kernel.org/pub/software/utils/${pkgname}/${pkgname}-${pkgver}.tar.bz2
https://mj.ucw.cz/download/linux/pci/${pkgname}-${pkgver}.tar.gz{,.sign})
#git+https://github.com/pciutils/pciutils.git#tag=v$pkgver?signed)
validpgpkeys=(
'5558F9399CD7836850553C6EC28E7847ED70F82D' # Martin Mares <mj@ucw.cz>
)
md5sums=('51554c538b5a57b61123326e14ea28a1'
'SKIP')
options=(staticlibs)
_pkgname=$pkgname
pkgname+='-staticlibs'
pkgdesc+=" (static libs)"
provides=("$_pkgname=$pkgver")
conflicts=("$_pkgname")
build() {
cd $_pkgname-$pkgver
make OPT="${CFLAGS} -fPIC -DPIC" ZLIB=no SHARED=no PREFIX=/usr SHAREDIR=/usr/share/hwdata MANDIR=/usr/share/man SBINDIR=/usr/bin lib/libpci.a
cp lib/libpci.a "${srcdir}/"
make clean
make OPT="${CFLAGS}" ZLIB=no SHARED=yes PREFIX=/usr SBINDIR=/usr/bin SHAREDIR=/usr/share/hwdata MANDIR=/usr/share/man all
}
package() {
cd $_pkgname-$pkgver
make SHARED=yes PREFIX=/usr SBINDIR=/usr/bin SHAREDIR=/usr/share/hwdata MANDIR=/usr/share/man DESTDIR="${pkgdir}" install install-lib
# this is now supplied by the 'hwdata' package
rm -rf "$pkgdir"/usr/{sbin/update-pciids,share/{man/man8/update-pciids.8,hwdata}}
# install the static lib
install -m644 "${srcdir}/libpci.a" "${pkgdir}/usr/lib/"
}
|