wok view php-auth-sasl/receipt @ rev 22042

gcc83-lib-base: do NOT provide gcc-lib-base
Currently BOTH gcc-lib-base and gcc83-lib-base are installed on my SliTaz system. So, with the current (and longstanding) tazpkg limitations I can't update just gcc-lib-base: tazpkg always updates gcc83-lib-base for me instead. Now I can't run Firefox, Vivaldi, Chrome, etc. I think because of gcc-lib-base, but I not sure 1bsolutely.
author Aleksej Bobylev <al.bobylev@gmail.com>
date Tue Oct 22 12:55:54 2019 +0300 (2019-10-22)
parents 51a1ebbda768
children 563eb06bdb4a
line source
1 # SliTaz package receipt.
3 PACKAGE="php-auth-sasl"
4 VERSION="1.0.4"
5 CATEGORY="development"
6 SHORT_DESC="Abstraction of various SASL mechanism responses for php."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="BSD"
9 WEB_SITE="https://pear.php.net/"
10 SOURCE="Auth_SASL"
11 TARBALL="$SOURCE-$VERSION.tgz"
12 WGET_URL="http://download.pear.php.net/package/$TARBALL"
14 DEPENDS="php-pear"
15 BUILD_DEPENDS="php-pear php-cli"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 cd $src
21 mkdir -p $DESTDIR/usr/share/php
22 tar czf $TARBALL $SOURCE-$VERSION package.xml
23 pear install --offline --installroot=$DESTDIR $TARBALL
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 cp -a $install/usr $fs
30 rm -rf $fs/usr/share/php/.channels $fs/usr/share/php/.registry/.c*
31 rm -rf $fs/usr/share/php/.f* $fs/usr/share/php/.l*
32 rm -rf $fs/usr/share/php/.dep*
33 }