wok-next annotate grep/receipt @ rev 21332

updated libvirt (4.3.0 -> 5.10.0)
author Hans-G?nter Theisgen
date Thu Dec 12 17:26:25 2019 +0100 (2019-12-12)
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 }