void-packages/srcpkgs/dracut/template

50 lines
1.4 KiB
Plaintext
Raw Normal View History

2012-01-12 17:48:32 +01:00
# Template file for 'dracut'
pkgname=dracut
2013-07-31 14:55:27 +02:00
version=031
revision=2
2012-01-12 17:48:32 +01:00
build_style=gnu-makefile
2012-07-10 09:23:16 +02:00
make_build_args="sysconfdir=/etc systemdsystemunitdir=/usr/lib/systemd/system"
make_install_args="sysconfdir=/etc systemdsystemunitdir=/usr/lib/systemd/system"
2013-06-13 06:57:13 +02:00
hostmakedepends="libxslt docbook-xsl asciidoc"
2013-06-14 17:34:01 +02:00
makedepends="psmisc cpio xz systemd"
2012-05-27 09:57:11 +02:00
homepage="http://www.kernel.org/pub/linux/utils/boot/dracut/dracut.html"
2012-01-12 17:48:32 +01:00
short_desc="A new initramfs infrastructure"
maintainer="Juan RP <xtraeme@gmail.com>"
2012-05-27 09:57:11 +02:00
license="GPL-2"
distfiles="${KERNEL_SITE}/utils/boot/$pkgname/$pkgname-$version.tar.xz"
2013-07-31 14:55:27 +02:00
checksum=5aa2a3a1a7f4218cef81c4a4a425100236edecfb74ce9bcd7f4bde97bfeb7ef4
pre_install() {
# fix path to busybox.
2012-05-27 09:57:11 +02:00
sed -i "s|/sbin/busybox|/bin/busybox|g" modules.d/05busybox/module-setup.sh
}
2012-05-29 14:30:26 +02:00
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}"
2013-06-13 06:55:10 +02:00
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() {
2013-06-13 06:55:10 +02:00
vmove all
}
}