diff options
Diffstat (limited to 'lilo/Pkgfile')
-rw-r--r-- | lilo/Pkgfile | 21 |
1 files changed, 12 insertions, 9 deletions
diff --git a/lilo/Pkgfile b/lilo/Pkgfile index f632813..a391c56 100644 --- a/lilo/Pkgfile +++ b/lilo/Pkgfile @@ -1,18 +1,21 @@ -description="LInux boot LOader" -packager="" -maintainer="CRUX System Team, core-ports at crux dot nu" +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) name=lilo version=23.1 release=1 -source=(http://lilo.alioth.debian.org/ftp/upstream/sources/lilo-23.1.tar.gz lilo-config.patch lilo.conf) +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 + 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 } |