diff options
author | tnut <tnut at nutyx dot com> | 2012-04-03 20:58:38 +0200 |
---|---|---|
committer | tnut <tnut at nutyx dot com> | 2012-04-03 20:58:38 +0200 |
commit | d4dac912a20703f6ac1c7c0397f47219daa03478 (patch) | |
tree | 897e97b3656fad8d4f5714e52451313cb4360764 /pciutils/Pkgfile | |
parent | c27c9ef118c72face9498d256a92fe359aa56150 (diff) | |
download | nutyx-pakxe-d4dac912a20703f6ac1c7c0397f47219daa03478.tar.gz nutyx-pakxe-d4dac912a20703f6ac1c7c0397f47219daa03478.tar.bz2 nutyx-pakxe-d4dac912a20703f6ac1c7c0397f47219daa03478.tar.xz nutyx-pakxe-d4dac912a20703f6ac1c7c0397f47219daa03478.zip |
libgl, ajout dépendances
Diffstat (limited to 'pciutils/Pkgfile')
-rwxr-xr-x | pciutils/Pkgfile | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/pciutils/Pkgfile b/pciutils/Pkgfile new file mode 100755 index 000000000..895c8e6fb --- /dev/null +++ b/pciutils/Pkgfile @@ -0,0 +1,24 @@ +# 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 + +name=pciutils +version=3.1.7 +release=2 +source=( ftp://ftp.kernel.org/pub/software/utils/$name/$name-$version.tar.bz2 ) + + +build() { + cd $name-$version + ./update-pciids.sh + + make OPT="$CFLAGS -fPIC -DPIC" ZLIB=no PREFIX=/usr SHAREDIR=/usr/share/hwdata MANDIR=/usr/share/man all + + 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 +} |