diff options
author | Lukc <lukc@upyum.com> | 2010-12-12 11:21:46 +0100 |
---|---|---|
committer | Lukc <lukc@upyum.com> | 2010-12-12 11:21:46 +0100 |
commit | d0a7ed181ed11aed307f2607e564b7d967fed533 (patch) | |
tree | 112ced33cc7d0bb7a8274fa7010fb9bd2cdc657d /lilo/Pkgfile | |
parent | c0ccc238f2bbae4bfda43cdd50c08ac1dd601ba8 (diff) | |
download | base-d0a7ed181ed11aed307f2607e564b7d967fed533.tar.gz base-d0a7ed181ed11aed307f2607e564b7d967fed533.tar.bz2 base-d0a7ed181ed11aed307f2607e564b7d967fed533.tar.xz base-d0a7ed181ed11aed307f2607e564b7d967fed533.zip |
Recette de LiLo mise à jour.
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 } |