mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-30 02:41:17 +02:00
39 lines
1.3 KiB
Plaintext
39 lines
1.3 KiB
Plaintext
# Contributor: Nathan Johnson <nathan@nathanjohnson.info>
|
|
# Maintainer: Nathan Johnson <nathan@nathanjohnson.info>
|
|
pkgname=php7-couchbase
|
|
_pkgreal=couchbase
|
|
pkgver=2.2.0_beta3
|
|
_pkgrealver=${pkgver/_/}
|
|
pkgrel=0
|
|
pkgdesc="PHP extension couchbase"
|
|
url="http://pecl.php.net/package/$_pkgreal"
|
|
arch="all"
|
|
license="ASL 2.0"
|
|
depends=
|
|
pecldepends="php7-dev autoconf"
|
|
makedepends="$pecldepends libcouchbase-dev zlib-dev"
|
|
install=""
|
|
subpackages=""
|
|
source="${pkgname}-${pkgver}.tgz::http://pecl.php.net/get/${_pkgreal}-${_pkgrealver}.tgz"
|
|
|
|
_builddir="$srcdir"/$_pkgreal-$_pkgrealver
|
|
|
|
build() {
|
|
cd "$_builddir"
|
|
phpize7 || return 1
|
|
./configure --prefix=/usr --with-php-config=/usr/bin/php-config7 || return 1
|
|
make || return 1
|
|
make test || return 1
|
|
}
|
|
|
|
package() {
|
|
cd "$_builddir"
|
|
make INSTALL_ROOT="$pkgdir"/ install || return 1
|
|
install -d "$pkgdir"/etc/php5/conf.d || return 1
|
|
echo "extension=$_pkgreal.so" > "$pkgdir"/etc/php5/conf.d/$_pkgreal.ini
|
|
}
|
|
|
|
md5sums="0fec7a685d44948921c48167dffd0d35 php7-couchbase-2.2.0_beta3.tgz"
|
|
sha256sums="f1f73f57790628b4839f1e8a8ee97f40eb19b7e17d6de8462991dc6188d35d36 php7-couchbase-2.2.0_beta3.tgz"
|
|
sha512sums="c80cef205b9fb957f9a5be42a92a749c8ce7dfd4d01638be2441e84e9eb454cf4b28266591378ad07ac7004e798175cdf2455da46d688f702a643705bc7276ea php7-couchbase-2.2.0_beta3.tgz"
|