mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-10 15:04:36 +08:00
29 lines
1.0 KiB
Bash
29 lines
1.0 KiB
Bash
pkgname=pciutils
|
|
pkgver=3.3.1
|
|
pkgrel=1
|
|
pkgdesc="PCI bus configuration space access library and tools"
|
|
arch=('x86_64')
|
|
license=('GPL2')
|
|
groups=('base')
|
|
url="http://mj.ucw.cz/pciutils.html"
|
|
optdepends=('sh: required by update-pciids')
|
|
makedepends=('wget')
|
|
depends=('glibc' 'hwids')
|
|
source=(ftp://ftp.kernel.org/pub/software/utils/${pkgname}/${pkgname}-${pkgver}.tar.xz)
|
|
md5sums=('4c340a317987d61a11ee2cf139ef1191')
|
|
|
|
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
|
|
make clean
|
|
make OPT="${CFLAGS}" ZLIB=no SHARED=yes PREFIX=/usr SHAREDIR=/usr/share/hwdata MANDIR=/usr/share/man all
|
|
}
|
|
|
|
package() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
make SHARED=yes PREFIX=/usr SHAREDIR=/usr/share/hwdata MANDIR=/usr/share/man DESTDIR="${pkgdir}" install install-lib
|
|
# this is now supplied by the hwids package
|
|
rm -rf $pkgdir/usr/{sbin/update-pciids,share/{man/man8/update-pciids.8.gz,hwdata}}
|
|
}
|