wok-next view grep/receipt @ rev 20436

Update packages listed in the LFS book.
author Aleksej Bobylev <al.bobylev@gmail.com>
date Wed Feb 21 19:48:17 2018 +0200 (2018-02-21)
parents 9a17d981d0f7
children 342b30daff76
line source
1 # SliTaz package receipt v2.
3 PACKAGE="grep"
4 VERSION="3.1"
5 CATEGORY="development"
6 SHORT_DESC="GNU Global Regular Expression Print"
7 MAINTAINER="paul@slitaz.org"
8 LICENSE="GPL3"
9 WEB_SITE="https://www.gnu.org/software/grep/"
10 LFS="http://www.linuxfromscratch.org/lfs/view/stable/chapter06/grep.html"
12 TARBALL="$PACKAGE-$VERSION.tar.xz"
13 WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL"
15 BUILD_DEPENDS="pcre-dev perl gettext"
17 compile_rules() {
18 ./configure \
19 --bindir=/bin \
20 $CONFIGURE_ARGS &&
21 make && make install
22 }
24 genpkg_rules() {
25 copy @std
26 DEPENDS="pcre"
27 TAGS="LFS"
28 }