core/less/Pkgfile

19 lines
475 B
Plaintext
Raw Normal View History

2006-02-23 16:26:10 +01:00
# Description: A terminal based program for viewing text files
2021-04-23 15:21:16 +02:00
# URL: http://www.greenwoodsoftware.com/less/
# Maintainer: CRUX System Team, core-ports at crux dot nu
# Depends on: ncurses libpcre
2006-02-23 16:26:10 +01:00
name=less
2021-07-14 15:31:17 +02:00
version=590
2006-02-23 16:26:10 +01:00
release=1
source=(http://www.greenwoodsoftware.com/less/$name-$version.tar.gz \
2021-04-23 15:21:16 +02:00
filter)
2006-02-23 16:26:10 +01:00
build() {
2021-04-23 15:21:16 +02:00
cd $name-$version
./configure --prefix=/usr --with-regex=pcre
make
make DESTDIR=$PKG install
install -m 755 -D $SRC/filter $PKG/usr/lib/less/filter
2006-02-23 16:26:10 +01:00
}