void-packages/srcpkgs/kmod/template

42 lines
1.3 KiB
Plaintext
Raw Normal View History

2012-01-13 10:19:30 +01:00
# Template file for 'kmod'
pkgname=kmod
2012-03-04 06:00:56 +01:00
version=6
2012-01-13 10:19:30 +01:00
homepage="http://git.profusion.mobi/cgit.cgi/kmod.git"
2012-03-04 06:00:56 +01:00
distfiles="${KERNEL_SITE}/utils/kernel/kmod/kmod-6.tar.xz"
2012-01-13 10:19:30 +01:00
build_style=gnu-configure
2012-02-07 04:53:25 +01:00
configure_args="--with-rootprefix= --with-zlib --with-xz"
2012-01-13 10:19:30 +01:00
short_desc="Linux kernel module handling"
maintainer="Juan RP <xtraeme@gmail.com>"
license="GPL-2"
2012-03-04 06:00:56 +01:00
checksum=6f1142519916d2dbe780693045a1b2d52d0b2212ec1bd23dd5a03134c3ba62b7
2012-01-13 10:19:30 +01:00
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."
2012-01-24 09:36:34 +01:00
provides="module-init-tools-3.17"
2012-01-13 10:19:30 +01:00
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
}