diff options
author | Leo <thinkabit.ukim@gmail.com> | 2019-05-26 01:26:23 -0300 |
---|---|---|
committer | Francesco Colista <fcolista@alpinelinux.org> | 2019-05-27 15:04:01 +0000 |
commit | 0067f76364fba1e5cd844a0d85b47c50f34dff3c (patch) | |
tree | 5f6c719335e6751b5c896bc08b908e8754c4f0fa /community/php7-pear-auth_sasl | |
parent | 34f3a9dd13c0e952ca881401511df4d2ab7be00d (diff) | |
download | aports-0067f76364fba1e5cd844a0d85b47c50f34dff3c.tar.bz2 aports-0067f76364fba1e5cd844a0d85b47c50f34dff3c.tar.xz |
community/php7-pear-auth_sasl: modernize, fix license.
Diffstat (limited to 'community/php7-pear-auth_sasl')
-rw-r--r-- | community/php7-pear-auth_sasl/APKBUILD | 15 |
1 files changed, 4 insertions, 11 deletions
diff --git a/community/php7-pear-auth_sasl/APKBUILD b/community/php7-pear-auth_sasl/APKBUILD index df1061489e..4e343417d1 100644 --- a/community/php7-pear-auth_sasl/APKBUILD +++ b/community/php7-pear-auth_sasl/APKBUILD @@ -3,27 +3,20 @@ _php=php7 pkgname=${_php}-pear-auth_sasl _realname=Auth_SASL pkgver=1.1.0 -pkgrel=0 +pkgrel=1 pkgdesc="Abstraction of various SASL mechanism responses" url="http://pear.php.net/package/Auth_SASL" arch="noarch" -license="BSD" +license="BSD-3-Clause" depends="${_php}-pear" -makedepends="$depends_dev ${_php}-pear" -options="!check" +options="!check" # No testsuite source="http://download.pear.php.net/package/$_realname-$pkgver.tgz" builddir="$srcdir"/$_realname-$pkgver - -build() { - return 0 -} - package() { _phpdir="usr/share/$_php" - cd "$builddir" install -d "$pkgdir"/$_phpdir/PEAR && \ - cp -R Auth "$pkgdir"/$_phpdir/PEAR || return 1 + cp -R Auth "$pkgdir"/$_phpdir/PEAR } |