summaryrefslogtreecommitdiffstats
path: root/lilo/Pkgfile
blob: 923c5392e04cd8eefc4e3e262dddcfdf324bf289 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
description="LInux boot LOader."
packager="CRUX System Team <core-ports AT crux DOT nu>"
maintainer="Lukc <lukc AT upyum DOT com>"
url="http://lilo.alioth.debian.org/"
depends=(libdevmapper)

archs=(x86 x86_64)
name=lilo
version=23.1
release=1
source=(http://lilo.alioth.debian.org/ftp/upstream/sources/$name-$version.tar.gz lilo-config.patch lilo.conf)
build () 
{ 
	cd $name-$version;
	patch -p1 -i $SRC/$name-config.patch;
	make all;
	make DESTDIR=$PKG install;
	install -m 644 $SRC/lilo.conf $PKG/etc;
	# If you find better, correct without asking.
	mkdir -p $PKG/usr/share
	mv $PKG/usr/man $PKG/usr/share/man
}