2006-05-07 08:12:29 +00:00
|
|
|
# Description: Library and utilities to access the PCI bus configuration registers
|
2008-04-11 11:19:50 +02:00
|
|
|
# URL: http://mj.ucw.cz/pciutils.shtml
|
2008-05-07 22:51:04 +02:00
|
|
|
# Maintainer: CRUX System Team, core-ports at crux dot nu
|
2013-04-22 17:01:07 +02:00
|
|
|
# Depends on: kmod
|
2006-02-23 17:19:35 +00:00
|
|
|
|
|
|
|
name=pciutils
|
2013-11-11 15:25:00 +01:00
|
|
|
version=3.2.1
|
2013-04-22 17:01:07 +02:00
|
|
|
release=1
|
2011-10-04 09:23:16 +02:00
|
|
|
source=(ftp://atrey.karlin.mff.cuni.cz/pub/linux/pci/$name-$version.tar.gz)
|
2006-02-23 17:19:35 +00:00
|
|
|
|
|
|
|
build() {
|
2006-05-07 08:12:29 +00:00
|
|
|
cd $name-$version
|
2013-03-14 18:57:36 +01:00
|
|
|
|
|
|
|
local CONF="ZLIB=no DESTDIR=$PKG PREFIX=/usr MANDIR=/usr/man"
|
|
|
|
|
2013-11-11 15:25:00 +01:00
|
|
|
make -j1 $CONF OPT="$CFLAGS" SHARED=yes install install-lib
|
2013-03-14 18:57:36 +01:00
|
|
|
make clean
|
2013-11-11 15:25:00 +01:00
|
|
|
make -j1 $CONF OPT="$CFLAGS" SHARED=no install install-lib
|
2006-02-23 17:19:35 +00:00
|
|
|
}
|