mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-05 21:37:15 +02:00
The cargo vars are now set in abuild.conf by default. Newlines done with: find . -name APKBUILD -exec sed -i '/^$/N;/^\n$/D' {} \; See also: https://stackoverflow.com/a/4522043
23 lines
722 B
Plaintext
23 lines
722 B
Plaintext
# Maintainer: Leonardo Arena <rnalrd@alpinelinux.org>
|
|
_php=php7
|
|
pkgname=${_php}-pear-auth_sasl
|
|
_realname=Auth_SASL
|
|
pkgver=1.1.0
|
|
pkgrel=1
|
|
pkgdesc="Abstraction of various SASL mechanism responses"
|
|
url="http://pear.php.net/package/Auth_SASL"
|
|
arch="noarch"
|
|
license="BSD-3-Clause"
|
|
depends="${_php}-pear"
|
|
options="!check" # No testsuite
|
|
source="http://download.pear.php.net/package/$_realname-$pkgver.tgz"
|
|
builddir="$srcdir"/$_realname-$pkgver
|
|
|
|
package() {
|
|
_phpdir="usr/share/$_php"
|
|
install -d "$pkgdir"/$_phpdir/PEAR && \
|
|
cp -R Auth "$pkgdir"/$_phpdir/PEAR
|
|
}
|
|
|
|
sha512sums="446ffa37fe7669d3993613167b07fb173c2e17664dcfb56d96a889b4a0cb2c83cc73d307aee15fc8fa7e666502835c15d09c32d8a491060bdd23c9093346bc40 Auth_SASL-1.1.0.tgz"
|