diff options
author | Valery Kartel <valery.kartel@gmail.com> | 2015-11-06 17:03:37 +0200 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2015-11-09 08:44:24 +0000 |
commit | 7d9aaee80c6c71b68f45374bdb564922daf0e717 (patch) | |
tree | 6f61957e49ca2e99d235078632904f6b53a3b88c /testing/php-xdebug | |
parent | ddaf30a9698b6005efea8664634f37eb60bc0bb6 (diff) | |
download | aports-7d9aaee80c6c71b68f45374bdb564922daf0e717.tar.bz2 aports-7d9aaee80c6c71b68f45374bdb564922daf0e717.tar.xz |
testing/php-xdebug: new aport (http://bugs.alpinelinux.org/issues/4814)
Diffstat (limited to 'testing/php-xdebug')
-rw-r--r-- | testing/php-xdebug/APKBUILD | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/testing/php-xdebug/APKBUILD b/testing/php-xdebug/APKBUILD new file mode 100644 index 0000000000..ec2119f3b9 --- /dev/null +++ b/testing/php-xdebug/APKBUILD @@ -0,0 +1,37 @@ +# Contributor: Valery Kartel <valery.kartel@gmail.com> +# Maintainer: Valery Kartel <valery.kartel@gmail.com> +pkgname=php-xdebug +_pkgreal=xdebug +pkgver=2.3.3 +_pkgver=${pkgver/_rc/RC} +pkgrel=0 +pkgdesc="PHP extension provides functions for function traces and profiling" +url="http://pecl.php.net/package/$_pkgreal" +arch="all" +license="PHP" +depends= +pecldepends="php-dev autoconf" +makedepends="$pecldepends" +install="" +subpackages="" +source="http://pecl.php.net/get/$_pkgreal-$_pkgver.tgz" + +_builddir="$srcdir"/$_pkgreal-$_pkgver + +build() { + cd "$_builddir" + phpize || return 1 + ./configure --prefix=/usr || return 1 + make || return 1 +} + +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 +} + +md5sums="60e6fdf41840104a23debe16db15a2af xdebug-2.3.3.tgz" +sha256sums="b27bd09b23136d242dbc94f4503c98f012a521d5597002c9d463a63c6b0cdfe3 xdebug-2.3.3.tgz" +sha512sums="212604e87caa67b3734befa0f57580532b0edd346ed871bbaba72ba8319ba60eb8d66649cb5716df250f28ef1cd2384ccc6f651b90ab4936dbcb45ef6c5f7438 xdebug-2.3.3.tgz" |