diff options
author | Juergen Daubert <jue@jue.li> | 2013-08-23 09:25:48 +0200 |
---|---|---|
committer | Juergen Daubert <jue@jue.li> | 2013-08-23 09:25:48 +0200 |
commit | 8ad1be0598c996d513bccd33aad8f4fef9efd28c (patch) | |
tree | 91ac2a365da0726b459f06655c66eeb7130a15f1 /kmod/Pkgfile | |
parent | 6285cc9ca0dc040e98ff8295231383f32a73ad51 (diff) | |
download | core-8ad1be0598c996d513bccd33aad8f4fef9efd28c.tar.gz core-8ad1be0598c996d513bccd33aad8f4fef9efd28c.tar.xz |
kmod: update to 15
Diffstat (limited to 'kmod/Pkgfile')
-rw-r--r-- | kmod/Pkgfile | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/kmod/Pkgfile b/kmod/Pkgfile index a56da118..af8dd2eb 100644 --- a/kmod/Pkgfile +++ b/kmod/Pkgfile @@ -3,7 +3,7 @@ # Maintainer: CRUX System Team, core-ports at crux dot nu name=kmod -version=14 +version=15 release=1 source=(https://www.kernel.org/pub/linux/utils/kernel/$name/$name-$version.tar.xz) @@ -13,7 +13,7 @@ build() { ./configure --prefix=/usr \ --bindir=/sbin \ --sysconfdir=/etc \ - --disable-manpages \ + --mandir=/usr/man \ --with-rootlibdir=/lib make @@ -21,10 +21,6 @@ build() { install -d $PKG/etc/{modprobe,depmod}.d install -d $PKG/bin - install -d $PKG/usr/man/{man5,man8} - - install -m 0644 man/*.5 $PKG/usr/man/man5 - install -m 0644 man/*.8 $PKG/usr/man/man8 ln -s kmod $PKG/sbin/modinfo ln -s kmod $PKG/sbin/depmod @@ -33,4 +29,7 @@ build() { ln -s kmod $PKG/sbin/rmmod ln -s kmod $PKG/sbin/modprobe ln -s ../sbin/kmod $PKG/bin/lsmod + + # remove bash-completion stuff + rm -r $PKG/usr/share } |