void-packages/srcpkgs/pciutils/template
2014-01-22 09:22:32 +01:00

52 lines
1.6 KiB
Plaintext

# Template file for 'pciutils'
pkgname=pciutils
version=3.2.1
revision=1
hostmakedepends="pkg-config which"
makedepends="hwids zlib-devel libkmod-devel"
depends="hwids"
short_desc="PCI bus related utilities"
maintainer="Juan RP <xtraeme@gmail.com>"
license="GPL-2"
homepage="http://mj.ucw.cz/pciutils.html"
distfiles="ftp://atrey.karlin.mff.cuni.cz/pub/linux/pci/${pkgname}-${version}.tar.gz"
checksum=b31131b721fa26378b4af61b1c49986ff40fe590bc210545b210b6b774337858
do_build() {
make OPT="${CFLAGS} -fPIC -DPIC" SHARED=no AR=${AR} \
RANLIB=${RANLIB} PREFIX=/usr CC=${CC} \
SHAREDIR=/usr/share/hwdata MANDIR=/usr/share/man all
cp lib/libpci.a ${XBPS_MASTERDIR}/tmp
make clean
make OPT="${CFLAGS} -fPIC -DPIC" SHARED=yes \
AR=${AR} RANLIB=${RANLIB} PREFIX=/usr CC=${CC} \
SHAREDIR=/usr/share/hwdata MANDIR=/usr/share/man all
}
do_install() {
make SHARED=yes PREFIX=/usr SHAREDIR=/usr/share/hwdata \
STRIP="-s --strip-program=${STRIP} " \
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
}
pciutils-devel_package() {
depends="${sourcepkg}>=${version}_${revision}"
short_desc+=" - development files"
pkg_install() {
vmove usr/include
vmove "usr/lib/*.a"
vmove "usr/lib/*.so"
vmove usr/lib/pkgconfig
vmove usr/share/man/man7
}
}