mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-26 08:51:25 +02:00
43 lines
1.1 KiB
Plaintext
43 lines
1.1 KiB
Plaintext
# Contributor: Nathan Johnson <nathan@nathanjohnson.info>
|
|
# Maintainer: Nathan Johnson <nathan@nathanjohnson.info>
|
|
pkgname=php7-couchbase
|
|
_pkgreal=couchbase
|
|
pkgver=2.5.0
|
|
pkgrel=0
|
|
_phpver=${pkgname#php}
|
|
_phpver=${_phpver%%-*}
|
|
pkgdesc="PHP$_phpver extension for Couchbase"
|
|
url="https://pecl.php.net/package/couchbase"
|
|
arch="all"
|
|
license="Apache-2.0"
|
|
depends="php$_phpver-common php$_phpver-json"
|
|
makedepends="php$_phpver-dev autoconf libcouchbase-dev zlib-dev"
|
|
source="$pkgname-$pkgver.tgz::https://pecl.php.net/get/$_pkgreal-$pkgver.tgz"
|
|
options="!check"
|
|
builddir="$srcdir/$_pkgreal-$pkgver"
|
|
|
|
build() {
|
|
cd "$builddir"
|
|
|
|
phpize$_phpver
|
|
./configure --prefix=/usr --with-php-config=php-config$_phpver
|
|
make
|
|
}
|
|
|
|
check() {
|
|
cd "$builddir"
|
|
make NO_INTERACTION=1 REPORT_EXIT_STATUS=1 test
|
|
}
|
|
|
|
package() {
|
|
local confdir="$pkgdir/etc/php$_phpver/conf.d"
|
|
cd "$builddir"
|
|
|
|
make INSTALL_ROOT="$pkgdir" install
|
|
|
|
mkdir -p "$confdir"
|
|
echo "extension=$_pkgreal.so" > "$confdir"/$_pkgreal.ini
|
|
}
|
|
|
|
sha512sums="28007f5689a34e53ba521f7542ebf6f682f04c2163286e74fb3faa2ab1b90eeb4316b193fa75f8adb4da0c46faa227d028c3e4c98622e365e11475c29fe02d51 php7-couchbase-2.5.0.tgz"
|