26 lines
1.1 KiB
Bash
26 lines
1.1 KiB
Bash
# Template file for 'dracut-crypt-ssh'
|
|
pkgname=dracut-crypt-ssh
|
|
version=1.0.7
|
|
revision=1
|
|
build_style=gnu-configure
|
|
hostmakedepends="dracut"
|
|
makedepends="libblkid-devel"
|
|
depends="dracut-network dropbear openssh"
|
|
short_desc="A new initramfs infrastructure - enter LUKS passphrase remotely"
|
|
maintainer="tastytea <tastytea@tastytea.de>"
|
|
license="GPL-2.0-or-later"
|
|
homepage="https://github.com/dracut-crypt-ssh/dracut-crypt-ssh"
|
|
distfiles="${homepage}/archive/v${version}.tar.gz"
|
|
checksum=c50b57b16d4aea3707e1f3e86777fafdb1b3551f2f4b6c4de5576eeb3b2f6bbc
|
|
conf_files="/etc/dracut.conf.d/crypt-ssh.conf"
|
|
|
|
pre_configure() {
|
|
sed -i '111s/^/#/' configure
|
|
sed -i 's/gcc -lblkid/gcc -lblkid $(CFLAGS)/' modules/60crypt-ssh/helper/Makefile
|
|
sed -i 's/gcc/$(CC)/' modules/60crypt-ssh/helper/Makefile
|
|
sed -i "s|CFLAGS=|CFLAGS=${CFLAGS} ${LDFLAGS} |" modules/60crypt-ssh/helper/Makefile
|
|
sed -i 's|/lib64/libnss_files.so.2||' modules/60crypt-ssh/module-setup.sh
|
|
sed -i '107s|$|\n [ -f /lib/libnss_files.so.2 ] \&\& dracut_install /lib/libnss_files.so.2|' \
|
|
modules/60crypt-ssh/module-setup.sh
|
|
}
|