summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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
}