43 lines
1.2 KiB
Bash
43 lines
1.2 KiB
Bash
# Template file for 'lilo'
|
|
pkgname=lilo
|
|
version=24.1
|
|
revision=7
|
|
only_for_archs="i686 i686-musl x86_64 x86_64-musl"
|
|
hostmakedepends="bin86"
|
|
makedepends="device-mapper-devel"
|
|
short_desc="Standard Linux boot loader"
|
|
maintainer="Sören Tempel <soeren+void@soeren-tempel.net>"
|
|
homepage="https://alioth.debian.org/projects/lilo/"
|
|
license="BSD"
|
|
distfiles="${DEBIAN_SITE}/main/l/${pkgname}/${pkgname}_${version}.orig.tar.gz"
|
|
checksum=a15280edacb8bca31b9163d65e61270b8c06cb9ffea74374a3a42164a13d4532
|
|
|
|
pre_build() {
|
|
sed -i Makefile src/Makefile \
|
|
-e 's|^\tmake|\t$(MAKE)|g' \
|
|
-e '/images install/d' \
|
|
-e '/images all/d'
|
|
}
|
|
do_build() {
|
|
# LILO needs LC_ALL=C
|
|
LC_ALL=C make CC=${CC} ${makejobs} all
|
|
}
|
|
|
|
do_install() {
|
|
vmkdir usr/bin
|
|
make DESTDIR=${DESTDIR} install
|
|
mv ${DESTDIR}/sbin/* ${DESTDIR}/usr/bin
|
|
mv ${DESTDIR}/usr/sbin/* ${DESTDIR}/usr/bin
|
|
|
|
rm ${DESTDIR}/etc/lilo.conf_example
|
|
for file in sample/*.conf; do
|
|
vsconf ${file}
|
|
done
|
|
|
|
# Setup kernel hooks
|
|
rm -rf ${DESTDIR}/etc/initramfs ${DESTDIR}/etc/kernel
|
|
vinstall ${FILESDIR}/kernel.d/lilo.post-install 750 \
|
|
etc/kernel.d/post-install 50-lilo
|
|
vinstall ${FILESDIR}/kernel.d/lilo.post-remove 750 \
|
|
etc/kernel.d/post-remove 50-lilo
|
|
}
|