New package: lilo-24.1

This commit is contained in:
Sören Tempel 2015-02-14 06:57:13 +01:00 committed by Juan RP
parent 796cfb67e4
commit d7fdde0a06

31
srcpkgs/lilo/template Normal file
View file

@ -0,0 +1,31 @@
# Template file for 'lilo'
pkgname=lilo
version=24.1
revision=1
makedepends="bin86"
depends="device-mapper"
conf_files="/etc/lilo.conf"
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() {
# Don't install images
sed '/images install/d' -i Makefile
sed '/images all/d' -i Makefile
}
do_build() {
# LILO needs LC_ALL=C
LC_ALL=C make all
}
do_install() {
make DESTDIR=${DESTDIR} install
rm -r ${DESTDIR}/etc/initramfs ${DESTDIR}/etc/kernel
mv ${DESTDIR}/sbin/* ${DESTDIR}/usr/sbin
mv ${DESTDIR}/etc/lilo.conf_example ${DESTDIR}/etc/lilo.conf
}