wok-next annotate grep/receipt @ rev 20749

pcre package was split into separate libs. Update the dependencies of the packages that previously depended on pcre.
author Aleksej Bobylev <al.bobylev@gmail.com>
date Fri Jun 01 00:47:43 2018 +0300 (2018-06-01)
parents 90a5eb560fd6
children d5aab818505e
rev   line source
al@19745 1 # SliTaz package receipt v2.
paul@7100 2
paul@7100 3 PACKAGE="grep"
al@20436 4 VERSION="3.1"
paul@7100 5 CATEGORY="development"
al@19745 6 SHORT_DESC="GNU Global Regular Expression Print"
paul@7100 7 MAINTAINER="paul@slitaz.org"
pascal@14999 8 LICENSE="GPL3"
al@19567 9 WEB_SITE="https://www.gnu.org/software/grep/"
al@20436 10 LFS="http://www.linuxfromscratch.org/lfs/view/stable/chapter06/grep.html"
al@19567 11
slaxemulator@11681 12 TARBALL="$PACKAGE-$VERSION.tar.xz"
paul@7100 13 WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL"
paul@7100 14
al@19567 15 BUILD_DEPENDS="pcre-dev perl gettext"
slaxemulator@11681 16
al@20436 17 compile_rules() {
al@19745 18 ./configure \
al@19745 19 --bindir=/bin \
al@19745 20 $CONFIGURE_ARGS &&
al@20749 21 make &&
al@20749 22 make install
paul@7100 23 }
paul@7100 24
al@20436 25 genpkg_rules() {
al@19745 26 copy @std
al@20749 27 DEPENDS="libpcre"
al@20436 28 TAGS="LFS"
paul@7100 29 }