36 lines
1.2 KiB
Text
36 lines
1.2 KiB
Text
# Template file for 'kmod'
|
|
pkgname=kmod
|
|
version=11
|
|
revision=2
|
|
build_style=gnu-configure
|
|
configure_args="--with-zlib --with-xz"
|
|
makedepends="pkg-config zlib-devel liblzma-devel libxslt"
|
|
provides="module-init-tools-3.17"
|
|
replaces="module-init-tools>=0"
|
|
subpackages="libkmod libkmod-devel"
|
|
short_desc="Linux kernel module handling"
|
|
maintainer="Juan RP <xtraeme@gmail.com>"
|
|
license="GPL-2"
|
|
homepage="http://git.profusion.mobi/cgit.cgi/kmod.git"
|
|
distfiles="${KERNEL_SITE}/utils/kernel/kmod/kmod-${version}.tar.xz"
|
|
checksum=28604e153833571ff6ebf34ad1722d3aca4d3d1760ad069a1f06d8fe5efd1de9
|
|
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.
|
|
|
|
These tools are designed on top of libkmod, a library that is shipped with kmod."
|
|
|
|
make_dirs="
|
|
/etc/depmod.d 0755 root root
|
|
/etc/modprobe.d 0755 root root
|
|
/usr/lib/depmod.d 0755 root root
|
|
/usr/lib/modprobe.d 0755 root root"
|
|
|
|
post_install() {
|
|
vinstall ${FILESDIR}/depmod-search.conf 644 usr/lib/depmod.d search.conf
|
|
# Add compatibility symlinks.
|
|
vmkdir usr/sbin
|
|
for tool in {ls,ins,rm,dep}mod mod{info,probe}; do
|
|
cd ${DESTDIR}/usr/sbin && ln -sf ../bin/kmod $tool
|
|
done
|
|
}
|