1
0
Fork 0
mirror of https://gitlab.alpinelinux.org/alpine/aports.git synced 2025-07-22 10:45:15 +03:00
aports/community/php81-pecl-maxminddb/APKBUILD
2022-12-12 15:17:43 +01:00

38 lines
1,023 B
Text

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