void-packages/srcpkgs/dkms/template

37 lines
1.1 KiB
Plaintext

# Template file for 'dkms'
pkgname=dkms
version=2.2.0.3
revision=4
homepage="http://linux.dell.com/dkms"
distfiles="${homepage}/permalink/dkms-$version.tar.gz"
short_desc="Dynamic Kernel Modules System"
maintainer="Juan RP <xtraeme@gmail.com>"
license="GPL-2"
checksum=352a080351410e29ae8cda7a794ba1e607b87ca913d0410d56209f08875378fc
long_desc="
dkms is a framework which allows kernel modules to be dynamically built for
each kernel on your system in a simplified and organized fashion."
do_install() {
# We are only interested in the bare minimum.
vinstall dkms 755 usr/sbin
vinstall dkms.8 644 usr/share/man/man8
vinstall dkms_dbversion 644 var/lib/dkms
vinstall dkms.bash-completion 644 etc/bash_completion.d dkms
vinstall dkms_framework.conf 644 etc/dkms framework.conf
# Kernel hooks.
vinstall ${FILESDIR}/kernel.d/dkms.postinst 750 \
etc/kernel.d/post-install 20-dkms
vinstall ${FILESDIR}/kernel.d/dkms.prerm 750 \
etc/kernel.d/pre-remove 20-dkms
}
dkms_package() {
conf_files="/etc/dkms/framework.conf"
noarch="yes"
depends="bash kmod gcc make coreutils linux-headers"
pkg_install() {
vmove all
}
}