void-packages/srcpkgs/kmod/template

44 lines
1.3 KiB
Plaintext

# Template file for 'kmod'
pkgname=kmod
version=3
patch_args="-Np1"
homepage="http://git.profusion.mobi/cgit.cgi/kmod.git"
distfiles="http://packages.profusion.mobi//$pkgname/$pkgname-$version.tar.xz"
build_style=gnu-configure
configure_args="--with-rootprefix= --with-rootlibdir=/lib --with-zlib
--with-xz"
short_desc="Linux kernel module handling"
maintainer="Juan RP <xtraeme@gmail.com>"
license="GPL-2"
checksum=4b32439703ab2837e81ae80f527f9e964ecb5883a9e80d1cc7518cf6e8593ad9
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."
provides="module-init-tools-3.16"
replaces="module-init-tools>=0"
subpackages="libkmod libkmod-devel"
make_dirs="
/etc/depmod.d 0755 root root
/etc/modprobe.d 0755 root root
/lib/depmod.d 0755 root root
/lib/modprobe.d 0755 root root"
Add_dependency build pkg-config
Add_dependency build zlib-devel
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
cd ${DESTDIR}/sbin && ln -sf ../usr/bin/kmod $tool
done
}