wok-next view less/receipt @ rev 20870
bleachbit: up (2.0); fbxkb and foobillardplus: fix build; add jdupes
author | Aleksej Bobylev <al.bobylev@gmail.com> |
---|---|
date | Mon Jul 02 15:13:13 2018 +0300 (2018-07-02) |
parents | 342b30daff76 |
children | d5aab818505e |
line source
1 # SliTaz package receipt v2.
3 PACKAGE="less"
4 VERSION="530"
5 CATEGORY="base-system"
6 SHORT_DESC="A terminal based program for viewing text files"
7 MAINTAINER="slaxemulator@gmail.com"
8 LICENSE="GPL3"
9 WEB_SITE="http://www.greenwoodsoftware.com/less"
10 LFS="http://www.linuxfromscratch.org/lfs/view/stable/chapter06/less.html"
11 HOST_ARCH="i486 x86_64"
13 TARBALL="$PACKAGE-$VERSION.tar.gz"
14 WGET_URL="$WEB_SITE/$TARBALL"
16 BUILD_DEPENDS="ncurses-dev pcre-dev"
18 compile_rules() {
19 ./configure \
20 --with-regex=pcre \
21 $CONFIGURE_ARGS &&
22 make &&
23 make DESTDIR=$install install
24 }
26 genpkg_rules() {
27 copy @std
28 DEPENDS="libpcre ncurses"
29 TAGS="LFS"
30 }