wok-next view grep/receipt @ rev 21470

updated totem-pl-parser (3.26.0 -> 3.26.5)
author Hans-G?nter Theisgen
date Wed May 13 08:02:17 2020 +0100 (2020-05-13)
parents d5aab818505e
children 7eb2e66fb138
line source
1 # SliTaz package receipt v2.
3 PACKAGE="grep"
4 VERSION="3.3"
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"
14 TARBALL_SHA1="e0befe21e7d9caa8e5e98385c96355d890f83123"
16 BUILD_DEPENDS="pcre-dev perl gettext-dev"
17 DEPENDS="libpcre"
19 TAGS="LFS"
21 compile_rules() {
22 # use --bindir to move from /usr/bin/ to /bin/
23 ./configure \
24 --bindir=/bin \
25 $CONFIGURE_ARGS &&
26 make &&
27 make install
28 }