wok-next diff php-auth-sasl/receipt @ rev 21724

busybox: update configs
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Sep 01 11:04:25 2020 +0000 (2020-09-01)
parents 4e6503d7a19f
children
line diff
     1.1 --- a/php-auth-sasl/receipt	Thu Jul 12 18:34:58 2018 +0300
     1.2 +++ b/php-auth-sasl/receipt	Tue Sep 01 11:04:25 2020 +0000
     1.3 @@ -3,7 +3,7 @@
     1.4  PACKAGE="php-auth-sasl"
     1.5  VERSION="1.0.4"
     1.6  CATEGORY="development"
     1.7 -SHORT_DESC="Abstraction of various SASL mechanism responses for php."
     1.8 +SHORT_DESC="Abstraction of various SASL mechanism responses for PHP"
     1.9  MAINTAINER="pascal.bellard@slitaz.org"
    1.10  LICENSE="BSD"
    1.11  WEB_SITE="http://pear.php.net/"
    1.12 @@ -13,24 +13,18 @@
    1.13  TARBALL="$SOURCE-$VERSION.tgz"
    1.14  WGET_URL="http://download.pear.php.net/package/$TARBALL"
    1.15  
    1.16 -DEPENDS="php-pear"
    1.17  BUILD_DEPENDS="php-pear php-cli"
    1.18  
    1.19 -# Rules to configure and make the package.
    1.20 -compile_rules()
    1.21 -{
    1.22 -	cd $src
    1.23 -	mkdir -p $DESTDIR/usr/share/php
    1.24 +compile_rules() {
    1.25 +	mkdir -p $install/usr/share/php
    1.26  	tar czf $TARBALL $SOURCE-$VERSION package.xml
    1.27 -	pear install --offline --installroot=$DESTDIR $TARBALL
    1.28 +	pear install --offline --installroot=$install $TARBALL
    1.29  }
    1.30  
    1.31 -# Rules to gen a SliTaz package suitable for Tazpkg.
    1.32 -genpkg_rules()
    1.33 -{
    1.34 +genpkg_rules() {
    1.35  	cp -a $install/usr $fs
    1.36  	rm -rf $fs/usr/share/php/.channels $fs/usr/share/php/.registry/.c*
    1.37  	rm -rf $fs/usr/share/php/.f* $fs/usr/share/php/.l*
    1.38  	rm -rf $fs/usr/share/php/.dep*
    1.39 +	DEPENDS="php-pear"
    1.40  }
    1.41 -