diff options
author | tnut <thierryn1 at hispeed dot ch> | 2010-06-22 12:59:16 +0200 |
---|---|---|
committer | tnut <thierryn1 at hispeed dot ch> | 2010-06-22 12:59:16 +0200 |
commit | 50b53c3ed8037141349cbfdb13500277d6111bb0 (patch) | |
tree | 2f38b4cad50289780a0435c4dcf16a2422066ed8 /base/module-init-tools/Pkgfile | |
parent | 2a7aab881252571c9e53870df655b6f048bb3ad6 (diff) | |
download | nutyx-pakxe-50b53c3ed8037141349cbfdb13500277d6111bb0.tar.gz nutyx-pakxe-50b53c3ed8037141349cbfdb13500277d6111bb0.tar.bz2 nutyx-pakxe-50b53c3ed8037141349cbfdb13500277d6111bb0.tar.xz nutyx-pakxe-50b53c3ed8037141349cbfdb13500277d6111bb0.zip |
maj module-init-tools#3.12-1
Diffstat (limited to 'base/module-init-tools/Pkgfile')
-rwxr-xr-x | base/module-init-tools/Pkgfile | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/base/module-init-tools/Pkgfile b/base/module-init-tools/Pkgfile index 869c5b313..1bbc4adaa 100755 --- a/base/module-init-tools/Pkgfile +++ b/base/module-init-tools/Pkgfile @@ -2,21 +2,21 @@ # URL: http://www.kernel.org/pub/linux/kernel/people/rusty/modules # Maintainer: NuTyX core team # Packager: thierryn1 at hispeed dot ch -# Depends on: name=module-init-tools -version=3.11.1 -release=2 +version=3.12 +release=1 source=(http://www.kernel.org/pub/linux/utils/kernel/$name/$name-$version.tar.bz2\ - modprobe.conf blacklist-fb.conf) + modprobe.conf blacklist-fb.conf usb.conf) build() { cd $name-$version +echo '.so man5/modprobe.conf.5' > modprobe.d.5 ./configure make check make clean -./configure --prefix=/ --enable-zlib \ +./configure --prefix=/ --enable-zlib-dynamic \ --mandir=/usr/share/man make @@ -24,6 +24,8 @@ install -d $PKG/usr/share/man install -d $PKG/etc/{modprobe.d,depmod.d} make DESTDIR=$PKG mandir=/usr/share/man install rm -f $PKG/sbin/generate-modprobe.conf -install -m 644 ../modprobe.conf $PKG/etc/modprobe.d/modprobe.conf -install -m 644 ../blacklist-fb.conf $PKG/etc/modprobe.d/ +for i in modprobe.conf blacklist-fb.conf usb.conf +do + install -m 644 ../$i $PKG/etc/modprobe.d/$i +done } |