testing/php81-pecl-vips: new aport

This commit is contained in:
Andy Postnikov 2022-02-17 16:24:48 +02:00
parent d2cb4696a3
commit 384b2c2107

View File

@ -0,0 +1,36 @@
# 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 !ppc64le" # Limited by vips aport
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
}
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
"