wok-next view grep/receipt @ rev 21727
created recipe for vbindiff
author | Hans-G?nter Theisgen |
---|---|
date | Sat Nov 21 14:32:44 2020 +0100 (2020-11-21) |
parents | 7c5d038be95b |
children |
line source
1 # SliTaz package receipt v2.
3 PACKAGE="grep"
4 VERSION="3.4"
5 CATEGORY="development"
6 TAGS="LFS"
7 SHORT_DESC="GNU Global Regular Expression Print"
8 MAINTAINER="paul@slitaz.org"
9 LICENSE="GPL3"
10 WEB_SITE="https://www.gnu.org/software/grep/"
11 LFS="http://www.linuxfromscratch.org/lfs/view/stable/chapter06/grep.html"
13 TARBALL="$PACKAGE-$VERSION.tar.xz"
14 WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL"
15 # 3.3 TARBALL_SHA1="e0befe21e7d9caa8e5e98385c96355d890f83123"
17 BUILD_DEPENDS="gettext-dev pcre-dev perl"
18 DEPENDS="libpcre"
19 SPLIT="$PACKAGE-lang"
21 compile_rules()
22 {
23 # use --bindir to move from /usr/bin/ to /bin/
24 ./configure \
25 --bindir=/bin \
26 $CONFIGURE_ARGS &&
27 make &&
28 make install
29 }