wok-next diff grep/receipt @ rev 19925

libftdi: update bdeps
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Oct 14 23:27:36 2017 +0200 (2017-10-14)
parents 708211fae5b6
children 90a5eb560fd6
line diff
     1.1 --- a/grep/receipt	Mon Dec 19 06:26:53 2016 +0200
     1.2 +++ b/grep/receipt	Sat Oct 14 23:27:36 2017 +0200
     1.3 @@ -1,9 +1,9 @@
     1.4 -# SliTaz package receipt.
     1.5 +# SliTaz package receipt v2.
     1.6  
     1.7  PACKAGE="grep"
     1.8 -VERSION="2.25"
     1.9 +VERSION="3.0"
    1.10  CATEGORY="development"
    1.11 -SHORT_DESC="GNU Global Regular Expression Print."
    1.12 +SHORT_DESC="GNU Global Regular Expression Print"
    1.13  MAINTAINER="paul@slitaz.org"
    1.14  LICENSE="GPL3"
    1.15  WEB_SITE="https://www.gnu.org/software/grep/"
    1.16 @@ -11,25 +11,20 @@
    1.17  TARBALL="$PACKAGE-$VERSION.tar.xz"
    1.18  WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL"
    1.19  
    1.20 -DEPENDS="pcre"
    1.21  BUILD_DEPENDS="pcre-dev perl gettext"
    1.22  
    1.23  # Rules to configure and make the package.
    1.24  compile_rules()
    1.25  {
    1.26 -	./configure $CONFIGURE_ARGS &&
    1.27 +	./configure \
    1.28 +		--bindir=/bin \
    1.29 +		$CONFIGURE_ARGS &&
    1.30  	make && make install
    1.31  }
    1.32  
    1.33  # Rules to gen a SliTaz package suitable for Tazpkg.
    1.34  genpkg_rules()
    1.35  {
    1.36 -	cook_copy_folders bin
    1.37 +	copy @std
    1.38 +	DEPENDS="pcre"
    1.39  }
    1.40 -
    1.41 -post_remove()
    1.42 -{
    1.43 -	for i in grep egrep fgrep; do
    1.44 -		ln -sf busybox "$1/bin/$i"
    1.45 -	done
    1.46 -}