wok-next view grep/receipt @ rev 20785

gpgme: add gnupg, since build can not find gpgconf and gpg
author Erkan Yilmaz <erkan@slitaz.org>
date Sat Jun 09 07:02:52 2018 +0000 (2018-06-09)
parents 90a5eb560fd6
children d5aab818505e
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 &&
22 make install
23 }
25 genpkg_rules() {
26 copy @std
27 DEPENDS="libpcre"
28 TAGS="LFS"
29 }