aports/testing/php81-pecl-vips/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

36 lines
1.1 KiB
Text

# Contributor: TBK <alpine@jjtc.eu>
# Maintainer: TBK <alpine@jjtc.eu>
pkgname=php81-pecl-vips
_extname=vips
pkgver=1.0.13
pkgrel=0
pkgdesc="PHP 8.1 extension for interfacing with vips - PECL"
url="https://pecl.php.net/package/vips"
arch="all !x86 !aarch64 !armv7 !armhf" # threads https://gitlab.alpinelinux.org/alpine/aports/-/issues/15972
license="MIT"
depends="php81-common"
makedepends="php81-dev vips-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() {
php81 -dextension=modules/$_extname.so --ri $_extname
make NO_INTERACTION=1 REPORT_EXIT_STATUS=1 SKIP_ONLINE_TESTS=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="
005660e3adb834e38a57b559411f4d33ec3efc5b2bc2e9afe182826618a7670530635ca684e73af2eb2c30ac4d3360653ba53fcfbcb835c712341bd6ed98bea3 php-pecl-vips-1.0.13.tgz
"