# Contributor: Fabio Ribeiro # Maintainer: Andy Postnikov pkgname=php8-pecl-mongodb _extname=mongodb pkgver=1.10.0 pkgrel=0 pkgdesc="PHP 8 MongoDB driver - PECL" url="https://pecl.php.net/package/mongodb" arch="all" license="Apache-2.0" depends="php8-common" makedepends="cyrus-sasl-dev icu-dev openssl-dev php8-dev snappy-dev" source="php-pecl-$_extname-$pkgver.tgz::https://pecl.php.net/get/$_extname-$pkgver.tgz" builddir="$srcdir"/$_extname-$pkgver provides="php8-mongodb=$pkgver-r$pkgrel" # for backward compatibility replaces="php8-mongodb" # for backward compatibility build() { phpize8 ./configure --prefix=/usr \ --with-php-config=/usr/bin/php-config8 make } check() { # tests requires additional dependencies (vagrant) php8 -d extension=modules/$_extname.so --ri $_extname } package() { make INSTALL_ROOT="$pkgdir" install local _confdir="$pkgdir"/etc/php8/conf.d install -d $_confdir echo "extension=$_extname.so" > $_confdir/$_extname.ini } sha512sums=" 72527087dc3d1e1d48d6236592c1fbafa68354e2b8e070e85180d79ffcaa82740641450808a235bb711ded16ff65ec0cbd53fb66f0da18837351a3d402c3976f php-pecl-mongodb-1.10.0.tgz "