aports/testing/php81-pecl-psr/APKBUILD
Andy Postnikov 71dd6fb2fb testing/php81: enable on loongarch64
The version is old but has 30% usage and will be maintained one more year

reverts 514075c652
2024-10-05 13:02:40 +00:00

34 lines
971 B
Text

# Maintainer: Andy Postnikov <apostnikov@gmail.com>
pkgname=php81-pecl-psr
_extname=psr
pkgver=1.2.0
pkgrel=0
pkgdesc="PHP 8.1 extension provides the accepted PSR interfaces, so they can be used in an extension - PECL"
url="https://pecl.php.net/package/psr"
arch="all"
license="BSD-2-Clause"
depends="php81-common"
makedepends="php81-dev"
source="php-pecl-$_extname-$pkgver.tgz::https://pecl.php.net/get/$_extname-$pkgver.tgz"
builddir="$srcdir/$_extname-$pkgver"
build() {
phpize81
./configure --prefix=/usr --with-php-config=php-config81
make
}
check() {
make NO_INTERACTION=1 REPORT_EXIT_STATUS=1 test TESTS=--show-diff
}
package() {
make INSTALL_ROOT="$pkgdir" install
local _confdir="$pkgdir"/etc/php81/conf.d
install -d $_confdir
echo "extension=$_extname" > $_confdir/$_extname.ini
}
sha512sums="
90d4bc1cd2364a15775024806ec5bc1b8f60ed44569162016a0a78fca89f4ad0f0e0b1f9f09ebdcfe6a803e888bddd1d8ce73100eec52ecc21c2e505a35ee5dd php-pecl-psr-1.2.0.tgz
"