kmod: update to 8.

This commit is contained in:
Juan RP 2012-04-20 09:02:10 +02:00
parent bb8bce9d55
commit cd17adae53
1 changed files with 3 additions and 5 deletions

View File

@ -1,6 +1,6 @@
# Template file for 'kmod'
pkgname=kmod
version=7
version=8
homepage="http://git.profusion.mobi/cgit.cgi/kmod.git"
distfiles="${KERNEL_SITE}/utils/kernel/kmod/kmod-${version}.tar.xz"
build_style=gnu-configure
@ -8,7 +8,7 @@ configure_args="--with-rootprefix= --with-zlib --with-xz"
short_desc="Linux kernel module handling"
maintainer="Juan RP <xtraeme@gmail.com>"
license="GPL-2"
checksum=9806ee5eeffe7e0c41959f6284795dca2fd1b1eade975524913536c7bef07af7
checksum=35f7d1dfcf62ea3d6da1ed0ee41a7997333680033609c5e9658f4fe8d997734d
long_desc="
kmod is a set of tools to handle common tasks with Linux kernel modules like
insert, remove, list, check properties, resolve dependencies and aliases.
@ -32,10 +32,8 @@ Add_dependency build liblzma-devel
post_install() {
vinstall ${FILESDIR}/depmod-search.conf 644 lib/depmod.d search.conf
# add symlinks to kmod
vmkdir bin
vmkdir sbin
cd ${DESTDIR}/bin && ln -sf ../usr/bin/kmod lsmod
for tool in {ins,rm,dep}mod mod{info,probe}; do
for tool in {ls,ins,rm,dep}mod mod{info,probe}; do
cd ${DESTDIR}/sbin && ln -sf ../usr/bin/kmod $tool
done
}