void-packages/srcpkgs/dracut/template

55 lines
1.5 KiB
Plaintext

# Template file for 'dracut'
pkgname=dracut
version=027
revision=1
build_style=gnu-makefile
make_build_args="sysconfdir=/etc systemdsystemunitdir=/usr/lib/systemd/system"
make_install_args="sysconfdir=/etc systemdsystemunitdir=/usr/lib/systemd/system"
makedepends="libxslt docbook-xsl asciidoc"
homepage="http://www.kernel.org/pub/linux/utils/boot/dracut/dracut.html"
short_desc="A new initramfs infrastructure"
maintainer="Juan RP <xtraeme@gmail.com>"
license="GPL-2"
distfiles="${KERNEL_SITE}/utils/boot/$pkgname/$pkgname-$version.tar.xz"
checksum=9aeea2648244a02884c2f680a90ba238e2efd6a3ca0d9929307a03124abf27cc
pre_build() {
# Remove the nonsense syncheck target.
sed -i -e "s|all: syncheck|all:|g" Makefile
}
pre_install() {
# fix path to busybox.
sed -i "s|/sbin/busybox|/bin/busybox|g" modules.d/05busybox/module-setup.sh
}
post_install() {
# kernel hooks.
vinstall ${FILESDIR}/kernel-hook-postinst \
755 etc/kernel.d/post-install 10-dracut
vinstall ${FILESDIR}/kernel-hook-postrm \
755 etc/kernel.d/post-remove 10-dracut
}
dracut-network_package() {
depends="dracut>=${version}"
short_desc="${short_desc} - network modules"
noarch=yes
pkg_install() {
for f in 40network 90livenet 95fcoe 95iscsi \
95nbd 95nfs 95zfcp 95znet; do
vmove usr/lib/dracut/modules.d/${f}
done
}
}
dracut_package() {
depends="psmisc>=22.14_2 cpio xz systemd>=199"
conf_files="/etc/dracut.conf"
make_dirs="/etc/dracut.conf.d 0755 root root"
pkg_install() {
vmove etc
vmove usr
}
}