CRUX-ARM : Home

Home :: Documentation :: Download :: Development :: Community :: Ports :: Packages :: Bugs :: Links :: About :: Donors
signify: initial import
[crossrootfs.git] / less / Pkgfile
1 # Description: A terminal based program for viewing text files
2 # URL: http://www.greenwoodsoftware.com/less/
3 # Maintainer: CRUX System Team, core-ports at crux dot nu
4 # Arch Maintainer: CRUX-ARM System Team, devel at crux-arm dot nu
5 # Depends on: ncurses libpcre
6
7 name=less
8 version=481
9 release=1
10 source=(http://www.greenwoodsoftware.com/less/$name-$version.tar.gz \
11 filter)
12
13 build() {
14 cd $name-$version
15
16 ./configure --build=$CHOST \
17 --host=$CTARGET \
18 --prefix=/usr \
19 --with-regex=pcre
20 make
21 make DESTDIR=$PKG install
22 install -m 755 -D $SRC/filter $PKG/usr/lib/less/filter
23 }