1
0
Fork 0
mirror of https://gitlab.alpinelinux.org/alpine/aports.git synced 2025-07-23 03:05:48 +03:00
aports/testing/php8-pecl-maxminddb/APKBUILD
2022-10-31 17:09:29 +00:00

36 lines
985 B
Text

# Contributor: TBK <alpine@jjtc.eu>
# Maintainer: Andy Postnikov <apostnikov@gmail.com>
pkgname=php8-pecl-maxminddb
_extname=maxminddb
pkgver=1.11.0
pkgrel=0
pkgdesc="PHP 8.0 MaxMind DB Reader extension - PECL"
url="https://pecl.php.net/package/maxminddb"
arch="all"
license="Apache-2.0"
depends="php8-bcmath"
makedepends="php8-dev libmaxminddb-dev"
source="php-pecl-$_extname-$pkgver.tar.gz::https://pecl.php.net/get/$_extname-$pkgver.tgz"
builddir="$srcdir/$_extname-$pkgver/ext"
build() {
phpize8
./configure --prefix=/usr --with-php-config=/usr/bin/php-config8
make
}
check() {
make test NO_INTERACTION=1 REPORT_EXIT_STATUS=1
}
package() {
make INSTALL_ROOT="$pkgdir" install
local confdir="$pkgdir"/etc/php8/conf.d
install -d $confdir
echo "extension=maxminddb" > $confdir/maxminddb.ini
}
sha512sums="
9ae2b168519d67803026862a035cf7ab392f4276a662fb674b4f3b9c2c6e28616b609b9121e0af46a599e16895f59282c4ff4db47ac22134bd5bbdec4aec950f php-pecl-maxminddb-1.11.0.tar.gz
"