summaryrefslogtreecommitdiffstats
path: root/lilo
diff options
context:
space:
mode:
authorLukc <lukc@upyum.com>2010-12-12 11:21:46 +0100
committerLukc <lukc@upyum.com>2010-12-12 11:21:46 +0100
commitd0a7ed181ed11aed307f2607e564b7d967fed533 (patch)
tree112ced33cc7d0bb7a8274fa7010fb9bd2cdc657d /lilo
parentc0ccc238f2bbae4bfda43cdd50c08ac1dd601ba8 (diff)
downloadbase-d0a7ed181ed11aed307f2607e564b7d967fed533.tar.gz
base-d0a7ed181ed11aed307f2607e564b7d967fed533.tar.bz2
base-d0a7ed181ed11aed307f2607e564b7d967fed533.tar.xz
base-d0a7ed181ed11aed307f2607e564b7d967fed533.zip
Recette de LiLo mise à jour.
Diffstat (limited to 'lilo')
-rw-r--r--lilo/.footprint13
-rw-r--r--lilo/.sha256sum3
-rw-r--r--lilo/Pkgfile21
3 files changed, 22 insertions, 15 deletions
diff --git a/lilo/.footprint b/lilo/.footprint
index deda6c4..91620f8 100644
--- a/lilo/.footprint
+++ b/lilo/.footprint
@@ -4,11 +4,12 @@ drwxr-xr-x root/root etc/
drwxr-xr-x root/root sbin/
-rwxr-xr-x root/root sbin/lilo
drwxr-xr-x root/root usr/
-drwxr-xr-x root/root usr/man/
-drwxr-xr-x root/root usr/man/man5/
--rw-r--r-- root/root usr/man/man5/lilo.conf.5.gz
-drwxr-xr-x root/root usr/man/man8/
--rw-r--r-- root/root usr/man/man8/keytab-lilo.8.gz
--rw-r--r-- root/root usr/man/man8/lilo.8.gz
drwxr-xr-x root/root usr/sbin/
-rwxr-xr-x root/root usr/sbin/keytab-lilo
+drwxr-xr-x root/root usr/share/
+drwxr-xr-x root/root usr/share/man/
+drwxr-xr-x root/root usr/share/man/man5/
+-rw-r--r-- root/root usr/share/man/man5/lilo.conf.5.bz2
+drwxr-xr-x root/root usr/share/man/man8/
+-rw-r--r-- root/root usr/share/man/man8/keytab-lilo.8.bz2
+-rw-r--r-- root/root usr/share/man/man8/lilo.8.bz2
diff --git a/lilo/.sha256sum b/lilo/.sha256sum
new file mode 100644
index 0000000..89b78b7
--- /dev/null
+++ b/lilo/.sha256sum
@@ -0,0 +1,3 @@
+9809ed34131f8178f4e986c60d668413093d2445ec29f0b4d03537386699e315 lilo-23.1.tar.gz
+6338fcbf989b40e98a9e064fcda48786e7c37731f9fd105b0f9780a2da172a0d lilo-config.patch
+6a4eba514917eb61b23e7696a15b32693ca238bbab30c9101d06b53355966909 lilo.conf
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
}