core/pciutils/Pkgfile

20 lines
523 B
Plaintext
Raw Normal View History

2006-05-07 10:12:29 +02:00
# Description: Library and utilities to access the PCI bus configuration registers
2021-12-13 12:01:43 +01:00
# URL: https://mj.ucw.cz/pciutils.shtml
# Maintainer: CRUX System Team, core-ports at crux dot nu
# Depends on: eudev
2006-02-23 18:19:35 +01:00
name=pciutils
2022-11-25 18:31:36 +01:00
version=3.9.0
release=1
2022-11-25 18:31:36 +01:00
source=(https://mj.ucw.cz/download/linux/pci/$name-$version.tar.gz)
2006-02-23 18:19:35 +01:00
build() {
2021-12-13 12:01:43 +01:00
cd $name-$version
2021-12-13 12:01:43 +01:00
local CONF="ZLIB=no DESTDIR=$PKG PREFIX=/usr"
2021-12-13 12:01:43 +01:00
make -j1 $CONF OPT="$CFLAGS" SHARED=yes install install-lib
make clean
make -j1 $CONF OPT="$CFLAGS" SHARED=no install install-lib
2006-02-23 18:19:35 +01:00
}