wok-next annotate 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
rev   line source
al@19745 1 # SliTaz package receipt v2.
paul@7100 2
paul@7100 3 PACKAGE="grep"
Hans-G?nter@21706 4 VERSION="3.4"
paul@7100 5 CATEGORY="development"
Hans-G?nter@21706 6 TAGS="LFS"
al@19745 7 SHORT_DESC="GNU Global Regular Expression Print"
paul@7100 8 MAINTAINER="paul@slitaz.org"
pascal@14999 9 LICENSE="GPL3"
al@19567 10 WEB_SITE="https://www.gnu.org/software/grep/"
al@20436 11 LFS="http://www.linuxfromscratch.org/lfs/view/stable/chapter06/grep.html"
al@19567 12
slaxemulator@11681 13 TARBALL="$PACKAGE-$VERSION.tar.xz"
paul@7100 14 WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL"
Hans-G?nter@21706 15 # 3.3 TARBALL_SHA1="e0befe21e7d9caa8e5e98385c96355d890f83123"
paul@7100 16
Hans-G?nter@21706 17 BUILD_DEPENDS="gettext-dev pcre-dev perl"
al@21085 18 DEPENDS="libpcre"
Hans-G?nter@21706 19 SPLIT="$PACKAGE-lang"
al@21085 20
Hans-G?nter@21706 21 compile_rules()
Hans-G?nter@21706 22 {
al@21085 23 # use --bindir to move from /usr/bin/ to /bin/
Hans-G?nter@21706 24 ./configure \
Hans-G?nter@21706 25 --bindir=/bin \
al@19745 26 $CONFIGURE_ARGS &&
al@20749 27 make &&
al@20749 28 make install
paul@7100 29 }