kmod: libxslt is not strictly required, install the man-pages manually

This commit is contained in:
Juergen Daubert 2012-11-10 16:28:46 +01:00
parent b53ba5388a
commit 2614224651

View File

@ -4,7 +4,7 @@
name=kmod
version=11
release=1
release=2
source=(http://www.kernel.org/pub/linux/utils/kernel/$name/$name-$version.tar.xz)
build() {
@ -13,7 +13,7 @@ build() {
./configure --prefix=/usr \
--bindir=/sbin \
--sysconfdir=/etc \
--mandir=/usr/man \
--disable-manpages \
--with-rootlibdir=/lib
make
@ -21,6 +21,10 @@ 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