diff options
Diffstat (limited to 'base/pciutils/Pkgfile')
-rwxr-xr-x | base/pciutils/Pkgfile | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/base/pciutils/Pkgfile b/base/pciutils/Pkgfile new file mode 100755 index 000000000..ca9ae8664 --- /dev/null +++ b/base/pciutils/Pkgfile @@ -0,0 +1,23 @@ +# Description: Jeu de programmes pour le listing des modules PCI +# URL: http://atrey.karlin.mff.cuni.cz/~mj/pciutils.html +# Maintainer: NuTyX core team +# Packager: thierryn1 at hispeed dot ch +# Depends on: + +name=pciutils +version=3.1.3 +release=1 +source=( ftp://ftp.kernel.org/pub/software/utils/$name/$name-$version.tar.bz2 ) + + +build() { + cd $name-$version + sed -i 's/null ;/null 2>\&1 ;/' update-pciids.sh + make PREFIX=/usr + mkdir -p $PKG/usr/share/man + mkdir -p $PKG/usr/lib + make PREFIX=$PKG/usr install + install -v -m 755 -d $PKG/usr/include/pci + install -v -m 644 lib/libpci.a $PKG/usr/lib + install -v -m 644 lib/*.h $PKG/usr/include/pci +} |