wok-next annotate grep/receipt @ rev 21020

Cleaning is almost finished... I should proceed to upgrades.
author Aleksej Bobylev <al.bobylev@gmail.com>
date Fri Nov 02 14:15:08 2018 +0200 (2018-11-02)
parents 342b30daff76
children 7c5d038be95b
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@21020 15 BUILD_DEPENDS="pcre-dev perl gettext-dev"
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 }