summaryrefslogtreecommitdiffstats
path: root/less
diff options
context:
space:
mode:
authorLukc <lukc@upyum.com>2010-12-12 14:56:11 +0100
committerLukc <lukc@upyum.com>2010-12-12 14:56:11 +0100
commit24748cdf7537814e58f1e8b78bc9a39b6c0fa76e (patch)
tree8841be367938d84adc57af1a06cc94008599360a /less
parenta1f54efc924b63e9519bb3d15438e91df2b471e2 (diff)
downloadbase-24748cdf7537814e58f1e8b78bc9a39b6c0fa76e.tar.gz
base-24748cdf7537814e58f1e8b78bc9a39b6c0fa76e.tar.bz2
base-24748cdf7537814e58f1e8b78bc9a39b6c0fa76e.tar.xz
base-24748cdf7537814e58f1e8b78bc9a39b6c0fa76e.zip
Recette de less mise à jour.
Diffstat (limited to 'less')
-rw-r--r--less/.footprint11
-rw-r--r--less/Pkgfile18
2 files changed, 16 insertions, 13 deletions
diff --git a/less/.footprint b/less/.footprint
index 210aa14..9ae5d23 100644
--- a/less/.footprint
+++ b/less/.footprint
@@ -6,8 +6,9 @@ drwxr-xr-x root/root usr/bin/
drwxr-xr-x root/root usr/lib/
drwxr-xr-x root/root usr/lib/less/
-rwxr-xr-x root/root usr/lib/less/filter
-drwxr-xr-x root/root usr/man/
-drwxr-xr-x root/root usr/man/man1/
--rw-r--r-- root/root usr/man/man1/less.1.gz
--rw-r--r-- root/root usr/man/man1/lessecho.1.gz
--rw-r--r-- root/root usr/man/man1/lesskey.1.gz
+drwxr-xr-x root/root usr/share/
+drwxr-xr-x root/root usr/share/man/
+drwxr-xr-x root/root usr/share/man/man1/
+-rw-r--r-- root/root usr/share/man/man1/less.1.bz2
+-rw-r--r-- root/root usr/share/man/man1/lessecho.1.bz2
+-rw-r--r-- root/root usr/share/man/man1/lesskey.1.bz2
diff --git a/less/Pkgfile b/less/Pkgfile
index b1611ff..4ca7868 100644
--- a/less/Pkgfile
+++ b/less/Pkgfile
@@ -1,6 +1,6 @@
-description="A terminal based program for viewing text files"
-packager=""
-maintainer="CRUX System Team, core-ports at crux dot nu"
+description="A terminal based program for viewing text files."
+packager="CRUX System Team <core-ports AT crux DOT nu>"
+maintainer="Lukc <lukc AT upyum DOT com>"
url="http://www.greenwoodsoftware.com/less/"
depends=(ncurses)
@@ -10,9 +10,11 @@ release=1
source=(http://www.greenwoodsoftware.com/less/less-429.tar.gz filter)
build ()
{
- cd $name-$version;
- ./configure --prefix=/usr --mandir=/usr/man;
- make;
- make DESTDIR=$PKG install;
- install -m 755 -D $SRC/filter $PKG/usr/lib/less/filter
+ cd $name-$version;
+ ./configure \
+ --prefix=$prefix \
+ --mandir=$mandir;
+ make;
+ make DESTDIR=$PKG install;
+ install -m 755 -D $SRC/filter $PKG$prefix/lib/less/filter
}