wok-next annotate grep/receipt @ rev 21085

Up: bison (3.2.3), cmake (3.13.2), curl (7.63.0), dbus (1.12.12), dialog (1.3-20181107), doxygen (1.8.14), e2fsprogs (1.44.5), glib (2.58.2), grep (3.3), itstool (2.0.5), jansson (2.12), jbig2dec (0.15), libfm-extra (1.3.1), libfm (1.3.1), libgpg-error (1.33), libidn (1.35), libjpeg-turbo (2.0.1), libtirpc (1.1.4), libuv (1.24.1), opus (1.3), opusfile (0.11), pango (1.42.4), pangomm (2.42.0), pcmanfm (1.3.1), rpcbind (1.2.5), rpcsvc-proto (1.4), sed (4.7), tcl (8.6.9), tslib (1.18), wget (1.20), wpa_supplicant (2.7)
author Aleksej Bobylev <al.bobylev@gmail.com>
date Tue Dec 25 19:30:28 2018 +0200 (2018-12-25)
parents d5aab818505e
children 7eb2e66fb138
rev   line source
al@19745 1 # SliTaz package receipt v2.
paul@7100 2
paul@7100 3 PACKAGE="grep"
al@21085 4 VERSION="3.3"
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"
al@21085 14 TARBALL_SHA1="e0befe21e7d9caa8e5e98385c96355d890f83123"
paul@7100 15
al@21020 16 BUILD_DEPENDS="pcre-dev perl gettext-dev"
al@21085 17 DEPENDS="libpcre"
al@21085 18
al@21085 19 TAGS="LFS"
slaxemulator@11681 20
al@20436 21 compile_rules() {
al@21085 22 # use --bindir to move from /usr/bin/ to /bin/
al@19745 23 ./configure \
al@19745 24 --bindir=/bin \
al@19745 25 $CONFIGURE_ARGS &&
al@20749 26 make &&
al@20749 27 make install
paul@7100 28 }