mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-25 12:15:32 +03:00
37 lines
1.2 KiB
Text
37 lines
1.2 KiB
Text
# 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"
|