aboutsummaryrefslogtreecommitdiffstats
path: root/community/php7-pecl-igbinary/APKBUILD
blob: f250b0c2d66cb45a011ca54d3ef650934a2e7e35 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
# Contributor: Andy Postnikov <apostnikov@gmail.com>
# Maintainer: Andy Postnikov <apostnikov@gmail.com>

pkgname=php7-pecl-igbinary
_pkgreal=igbinary
pkgver=3.1.0
pkgrel=0
pkgdesc="Igbinary is a drop in replacement for the standard php serializer"
url="https://pecl.php.net/package/igbinary"
arch="all"
license="BSD-3-Clause"
provides="php7-igbinary=$pkgver-r$pkgrel" # for backward compatibility
replaces="php7-igbinary" # for backward compatibility
depends="php7-common"
makedepends="autoconf php7-dev php7-json php7-pecl-apcu re2c"
source="$pkgname-$pkgver.tgz::https://pecl.php.net/get/$_pkgreal-$pkgver.tgz"
builddir="$srcdir/$_pkgreal-$pkgver"

build() {
	phpize7
	./configure \
		--prefix=/usr \
		--with-php-config=/usr/bin/php-config7
	make
}

check() {
	# Tests require json extension which is not bundled
	make NO_INTERACTION=1 REPORT_EXIT_STATUS=1 test \
		PHP_TEST_SHARED_EXTENSIONS="-d extension=/usr/lib/php7/modules/json.so \
		-d extension=modules/$_pkgreal.so"
}

package() {
	make INSTALL_ROOT="$pkgdir" install
	install -d "$pkgdir"/etc/php7/conf.d
	echo "extension=$_pkgreal.so" > \
		"$pkgdir"/etc/php7/conf.d/10_$_pkgreal.ini
}

sha512sums="3b3010a43510ab4f52a2282b40a2b4da01a02ab6267c4ea155e51d65f9a7d7fb1ca4e5943ed874a0a2f3cb0dc8e44491fe2206335d28999c96d83f3c8ae52a3d  php7-pecl-igbinary-3.1.0.tgz"