39 lines
1.1 KiB
Text
39 lines
1.1 KiB
Text
# Template file for 'kmod'
|
|
pkgname=kmod
|
|
version=12
|
|
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=c6189dd8c5a1e8d9224e8506bd188c0cd5dfa119fd6b7e5869b3640cbe8bf92f
|
|
|
|
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"
|
|
|
|
if [ -n "$XBPS_CROSS_TRIPLET" ]; then
|
|
makedepends="automake pkg-config libxslt"
|
|
crossmakedepends="zlib-devel liblzma-devel"
|
|
pre_configure() {
|
|
autoreconf -fi
|
|
}
|
|
fi
|
|
|
|
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
|
|
}
|