20 lines
496 B
Plaintext
20 lines
496 B
Plaintext
# Description: LInux boot LOader
|
|
# URL: http://tldp.org/HOWTO/LILO.html
|
|
# Maintainer: Per Lidén <per@fukt.bth.se>
|
|
|
|
name=lilo
|
|
version=22.7.1
|
|
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
|
|
make all
|
|
make ROOT=$PKG install
|
|
install -m 644 ../lilo.conf $PKG/etc
|
|
rm -rf $PKG/sbin/mkrescue \
|
|
$PKG/usr/man/man8/mkrescue.8
|
|
}
|