summaryrefslogtreecommitdiff
path: root/core/pciutils
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2012-05-25 00:02:35 +0000
committerroot <root@rshg054.dnsready.net>2012-05-25 00:02:35 +0000
commitaa30737839de3c2a4a1287442cb9859414fb4b0a (patch)
treefe7dabc8a40d713b7b0a781023fe64e03e728bb5 /core/pciutils
parent6553825d7281900890db91a21ac601d7aee9c55e (diff)
Fri May 25 00:02:35 UTC 2012
Diffstat (limited to 'core/pciutils')
-rw-r--r--core/pciutils/PKGBUILD13
1 files changed, 6 insertions, 7 deletions
diff --git a/core/pciutils/PKGBUILD b/core/pciutils/PKGBUILD
index d9d5619a0..4d8ed4bb0 100644
--- a/core/pciutils/PKGBUILD
+++ b/core/pciutils/PKGBUILD
@@ -1,23 +1,20 @@
-# $Id: PKGBUILD 150279 2012-02-16 08:29:09Z tpowa $
+# $Id: PKGBUILD 159402 2012-05-23 20:09:18Z tomegun $
# Maintainer: Tobias Powalowski <tpowa@archlinux.org>
pkgname=pciutils
pkgver=3.1.9
-pkgrel=1
+pkgrel=2
pkgdesc="PCI bus configuration space access library and tools"
arch=(i686 x86_64)
license=('GPL2')
groups=('base')
-url="http://mj.ucw.cz/pciutils.html"
-optdepends=('sh: required by update-pciids')
-makedepends=('wget')
-depends=('glibc')
+url="http://mj.ucw.cz/sw/pciutils/"
+depends=('glibc' 'hwids')
source=(#ftp://ftp.kernel.org/pub/software/utils/${pkgname}/${pkgname}-${pkgver}.tar.bz2
ftp://atrey.karlin.mff.cuni.cz/pub/linux/pci/${pkgname}-${pkgver}.tar.gz)
md5sums=('e958f5ffb93b12972964381c38f27eb3')
build() {
cd "${srcdir}/${pkgname}-${pkgver}"
- ./update-pciids.sh
make OPT="${CFLAGS} -fPIC -DPIC" ZLIB=no SHARED=no PREFIX=/usr SHAREDIR=/usr/share/hwdata MANDIR=/usr/share/man all
cp lib/libpci.a "${srcdir}/"
make clean
@@ -28,4 +25,6 @@ package() {
cd "${srcdir}/${pkgname}-${pkgver}"
make SHARED=yes PREFIX=/usr SHAREDIR=/usr/share/hwdata MANDIR=/usr/share/man DESTDIR="${pkgdir}" install install-lib
install -m644 "${srcdir}/libpci.a" "${pkgdir}/usr/lib/"
+ # this is now supplied by the hwids package
+ rm -rf $pkgdir/usr/{sbin/update-pciids,share/{man/man8/update-pciids.8.gz,hwdata}}
}