blob: b631c486b52254034c3be60e278bf1a29cf68eae (
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
|
# Contributor: Nathan Johnson <nathan@nathanjohnson.info>
# Maintainer: Nathan Johnson <nathan@nathanjohnson.info>
pkgname=php7-pecl-couchbase
_pkgreal=couchbase
pkgver=2.6.2
pkgrel=0
pkgdesc="PHP extension for Couchbase - PECL"
url="https://pecl.php.net/package/couchbase"
arch="all"
license="Apache-2.0"
depends="php7-common php7-json php7-pecl-igbinary"
makedepends="php7-dev autoconf libcouchbase-dev re2c zlib-dev"
source="$pkgname-$pkgver.tgz::https://pecl.php.net/get/$_pkgreal-$pkgver.tgz"
builddir="$srcdir/$_pkgreal-$pkgver"
provides="php7-couchbase=$pkgver-r$pkgrel" # for backward compatibility
replaces="php7-couchbase" # for backward compatibility
build() {
phpize7
./configure --prefix=/usr --with-php-config=php-config7
make
}
check() {
# require couchbase and phpunit
php7 -d extension="$builddir"/modules/$_pkgreal.so --ri $_pkgreal
}
package() {
make INSTALL_ROOT="$pkgdir" install
local confdir="$pkgdir/etc/php7/conf.d"
mkdir -p "$confdir"
echo "extension=$_pkgreal.so" > "$confdir"/$_pkgreal.ini
}
sha512sums="bd134c08e3b136d5fdc67734c7e2b1ae3e5f659721eade7ee41ecebc3aa66b8976d8f2d59158702da27344e93fbc0e96b3f5297694887920deeffa6168777d84 php7-pecl-couchbase-2.6.2.tgz"
|