1
0
Fork 0
mirror of https://gitlab.alpinelinux.org/alpine/aports.git synced 2025-07-24 11:45:18 +03:00
aports/testing/php8-pecl-solr/APKBUILD
2020-12-05 17:06:50 +00:00

37 lines
1.2 KiB
Text

# Contributor: Fabio Ribeiro <fabiorphp@gmail.com>
# Maintainer: Andy Postnikov <apostnikov@gmail.com>
pkgname=php8-pecl-solr
_extname=solr
pkgver=2.5.1
pkgrel=0
pkgdesc="Apache SOLR extension for PHP 8 - PECL"
url="https://pecl.php.net/package/solr"
arch="all"
license="PHP-3.01"
depends="php8-common"
makedepends="php8-dev curl-dev libxml2-dev"
source="php-pecl-$_extname-$pkgver.tgz::https://pecl.php.net/get/$_extname-$pkgver.tgz
fix-tests.patch"
builddir="$srcdir"/$_extname-$pkgver
build() {
phpize8
./configure --prefix=/usr --with-php-config=php-config8
make
}
check() {
php8 -d extension=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/php8/conf.d
install -d $_confdir
echo "extension=$_extname" > $_confdir/40_$_extname.ini
}
sha512sums="b02711989455f3839e65835808dae66fdce6abfd85fe2cb3d46c4177deb2170b5993ee0c94177c880d3defac2d2c502b43d768b590b7180b5c38ab063f55bdf3 php-pecl-solr-2.5.1.tgz
553503d194c8c8c4db065a4c21136e51d4ba8bb9a74327d312a6506e12d91b4d2b72c5082741e961df7f3852fecf2374333c8f00a173ca2e6e7e6f1049ecf6cb fix-tests.patch"