module-init-tools: update to 3.12.
This commit is contained in:
parent
2414f75a41
commit
a6189aaacc
1 changed files with 9 additions and 3 deletions
|
@ -1,13 +1,12 @@
|
|||
# Template file for 'module-init-tools'
|
||||
pkgname=module-init-tools
|
||||
version=3.11.1
|
||||
revision=2
|
||||
version=3.12
|
||||
distfiles="${KERNEL_SITE}//utils/kernel/$pkgname/$pkgname-$version.tar.bz2"
|
||||
build_style=gnu_configure
|
||||
configure_args="--enable-zlib --prefix="
|
||||
short_desc="Tools for managing kernel modules"
|
||||
maintainer="Juan RP <xtraeme@gmail.com>"
|
||||
checksum=c5bc5fba03769fec786a305abdf97f37c5d7a33e61b92f4ee4f1b80cbc1d1dc0
|
||||
checksum=d012ab07ea26721467a85a775f34747c1c8897e37f16bec5317d8a72ef8b4f17
|
||||
long_desc="
|
||||
The module-init-tools package provides many of the utilities
|
||||
needed by Linux systems for managing loadable Linux Kernel Modules. This
|
||||
|
@ -17,8 +16,15 @@ Add_dependency run glibc
|
|||
Add_dependency run zlib
|
||||
Add_dependency build zlib-devel
|
||||
|
||||
pre_configure()
|
||||
{
|
||||
# Don't regenerate manpages.
|
||||
touch ${wrksrc}/*.{5,8}
|
||||
}
|
||||
|
||||
post_install()
|
||||
{
|
||||
sed -i "s#mod#man5/mod#" ${DESTDIR}/usr/share/man/man5/modprobe.d.5
|
||||
# Some apps expect /sbin/lsmod, so make a symlink.
|
||||
cd ${DESTDIR}/sbin && ln -sf ../bin/lsmod .
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue