2012-01-12 16:48:32 +00:00
|
|
|
# Template file for 'dracut'
|
|
|
|
pkgname=dracut
|
2013-01-23 15:16:00 +00:00
|
|
|
version=025
|
|
|
|
revision=1
|
2012-01-12 16:48:32 +00:00
|
|
|
build_style=gnu-makefile
|
2012-07-10 07:23:16 +00:00
|
|
|
make_build_args="sysconfdir=/etc systemdsystemunitdir=/usr/lib/systemd/system"
|
|
|
|
make_install_args="sysconfdir=/etc systemdsystemunitdir=/usr/lib/systemd/system"
|
2012-09-17 13:58:31 +00:00
|
|
|
depends="psmisc>=22.14_2 cpio xz"
|
2012-08-01 14:17:47 +00:00
|
|
|
makedepends="libxslt docbook-xsl asciidoc"
|
2012-05-27 07:57:11 +00:00
|
|
|
conf_files="/etc/dracut.conf"
|
|
|
|
make_dirs="/etc/dracut.conf.d 0755 root root"
|
2012-05-28 06:21:21 +00:00
|
|
|
subpackages="dracut-network"
|
2012-05-27 07:57:11 +00:00
|
|
|
homepage="http://www.kernel.org/pub/linux/utils/boot/dracut/dracut.html"
|
2012-01-12 16:48:32 +00:00
|
|
|
short_desc="A new initramfs infrastructure"
|
|
|
|
maintainer="Juan RP <xtraeme@gmail.com>"
|
2012-05-27 07:57:11 +00:00
|
|
|
license="GPL-2"
|
2012-07-03 07:24:40 +00:00
|
|
|
distfiles="${KERNEL_SITE}/utils/boot/$pkgname/$pkgname-$version.tar.xz"
|
2013-01-23 15:16:00 +00:00
|
|
|
checksum=6851a6fc9e40cb2c5064049f27c1ebc389400e45a99cb69e5f357fd20b46b46c
|
2012-01-12 16:48:32 +00:00
|
|
|
|
2012-05-27 07:57:11 +00:00
|
|
|
pre_build() {
|
|
|
|
# Remove the nonsense syncheck target.
|
|
|
|
sed -i -e "s|all: syncheck|all:|g" Makefile
|
|
|
|
}
|
2012-01-13 11:19:30 +00:00
|
|
|
|
|
|
|
pre_install() {
|
|
|
|
# fix path to busybox.
|
2012-05-27 07:57:11 +00:00
|
|
|
sed -i "s|/sbin/busybox|/bin/busybox|g" modules.d/05busybox/module-setup.sh
|
2012-01-13 11:19:30 +00:00
|
|
|
}
|
2012-05-29 12:30:26 +00: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
|
|
|
|
}
|