38 lines
1.3 KiB
Text
38 lines
1.3 KiB
Text
# Template file for 'pciutils'
|
|
pkgname=pciutils
|
|
version=3.1.10
|
|
revision=1
|
|
homepage="http://mj.ucw.cz/pciutils.html"
|
|
distfiles="ftp://atrey.karlin.mff.cuni.cz/pub/linux/pci/${pkgname}-${version}.tar.gz"
|
|
subpackages="$pkgname-devel"
|
|
fulldepends="hwids"
|
|
short_desc="PCI bus related utilities"
|
|
maintainer="Juan RP <xtraeme@gmail.com>"
|
|
license="GPL-2"
|
|
checksum=7ca8201f806cbad31cb86bcbb2c2c99853cc05618b360eb58bde31a0f8d1f2a3
|
|
long_desc="
|
|
The $pkgname package contains various utilities for inspecting and
|
|
setting devices connected to the PCI bus."
|
|
|
|
do_build() {
|
|
make OPT="${XBPS_CFLAGS} -fPIC -DPIC" ZLIB=no SHARED=no PREFIX=/usr \
|
|
SHAREDIR=/usr/share/hwdata MANDIR=/usr/share/man all
|
|
cp lib/libpci.a ${XBPS_MASTERDIR}/tmp
|
|
make clean
|
|
make OPT="${XBPS_CFLAGS} -fPIC -DPIC" ZLIB=no SHARED=yes PREFIX=/usr \
|
|
SHAREDIR=/usr/share/hwdata MANDIR=/usr/share/man all
|
|
}
|
|
|
|
do_install() {
|
|
make SHARED=yes PREFIX=/usr SHAREDIR=/usr/share/hwdata \
|
|
MANDIR=/usr/share/man DESTDIR=${DESTDIR} install install-lib
|
|
vinstall ${XBPS_MASTERDIR}/tmp/libpci.a 644 usr/lib
|
|
|
|
# Set corrects perms to shlib.
|
|
chmod 755 ${DESTDIR}/usr/lib/libpci.so.${version}
|
|
|
|
# Remove update-pciids and pci.ids, handled by hwids.
|
|
rm -rf ${DESTDIR}/usr/share/hwdata
|
|
rm -f ${DESTDIR}/usr/sbin/update-pciids
|
|
rm -f ${DESTDIR}/usr/share/man/man8/update-pciids.8
|
|
}
|