diff options
-rw-r--r-- | testing/php5-couchbase/APKBUILD (renamed from testing/php-couchbase/APKBUILD) | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/testing/php-couchbase/APKBUILD b/testing/php5-couchbase/APKBUILD index cd8971731f..f0b4952c99 100644 --- a/testing/php-couchbase/APKBUILD +++ b/testing/php5-couchbase/APKBUILD @@ -1,7 +1,9 @@ # Contributor: Nathan Johnson <nathan@nathanjohnson.info> # Maintainer: Nathan Johnson <nathan@nathanjohnson.info> -pkgname=php-couchbase +pkgname=php5-couchbase _pkgreal=couchbase +replaces=php-couchbase +replaces_priority=1 pkgver=2.1.0 pkgrel=0 pkgdesc="PHP extension couchbase" @@ -9,7 +11,7 @@ url="http://pecl.php.net/package/$_pkgreal" arch="all" license="ASL 2.0" depends= -pecldepends="php-dev autoconf" +pecldepends="php5-dev autoconf" makedepends="$pecldepends libcouchbase-dev zlib-dev" install="" subpackages="" @@ -28,8 +30,8 @@ build() { package() { cd "$_builddir" make INSTALL_ROOT="$pkgdir"/ install || return 1 - install -d "$pkgdir"/etc/php/conf.d || return 1 - echo "extension=$_pkgreal.so" > "$pkgdir"/etc/php/conf.d/$_pkgreal.ini + install -d "$pkgdir"/etc/php5/conf.d || return 1 + echo "extension=$_pkgreal.so" > "$pkgdir"/etc/php5/conf.d/$_pkgreal.ini } md5sums="1ee53916bd2e1247882be0ccaf440857 couchbase-2.1.0.tgz" |