2006-02-23 15:26:10 +00:00
|
|
|
|
# Description: LInux boot LOader
|
|
|
|
|
# URL: http://tldp.org/HOWTO/LILO.html
|
2006-04-20 20:37:09 +00:00
|
|
|
|
# Maintainer: Per Lid<69>n, core-ports at crux dot nu
|
2006-02-23 15:26:10 +00:00
|
|
|
|
|
|
|
|
|
name=lilo
|
2006-07-08 10:04:00 +00:00
|
|
|
|
version=22.7.2
|
2006-02-23 15:26:10 +00:00
|
|
|
|
release=1
|
|
|
|
|
source=(http://home.san.rr.com/johninsd/pub/linux/lilo/$name-$version.src.tar.gz \
|
|
|
|
|
$name-$version.patch lilo.conf)
|
|
|
|
|
|
|
|
|
|
build() {
|
|
|
|
|
cd $name-$version
|
|
|
|
|
patch -p1 < ../$name-$version.patch
|
2006-07-08 10:04:00 +00:00
|
|
|
|
sed -i 's|\./checkit||g' Makefile
|
2006-02-23 15:26:10 +00:00
|
|
|
|
make all
|
|
|
|
|
make ROOT=$PKG install
|
|
|
|
|
install -m 644 ../lilo.conf $PKG/etc
|
|
|
|
|
rm -rf $PKG/sbin/mkrescue \
|
|
|
|
|
$PKG/usr/man/man8/mkrescue.8
|
|
|
|
|
}
|