void-packages/srcpkgs/dracut/template
2014-12-30 10:42:39 +01:00

46 lines
1.5 KiB
Plaintext

# Template file for 'dracut'
pkgname=dracut
version=040
revision=4
build_style=meta
hostmakedepends="libxslt docbook-xsl asciidoc"
depends="psmisc cpio"
conf_files="/etc/dracut.conf"
make_dirs="
/etc/dracut.conf.d 0755 root root
/usr/lib/dracut/dracut.conf.d 0755 root root"
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=b6e743353804b46e350177b9ecb9a8511df7e8c4ff9e0b4f3b4f72bc509c98a3
do_build() {
export CFLAGS="$CFLAGS -Wformat"
make ${makejobs} sysconfdir=/etc systemdsystemunitdir=/usr/lib/systemd/system
}
do_install() {
# fix path to busybox.
sed -i "s|/sbin/busybox|/bin/busybox|g" modules.d/05busybox/module-setup.sh
make DESTDIR=${DESTDIR} sysconfdir=/etc systemdsystemunitdir=/usr/lib/systemd/system install
# Remove --rsyncable argument for gzip WTF??
sed -i 's,--rsyncable,,g' ${DESTDIR}/usr/bin/dracut
# 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}_${revision}"
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
}
}