summaryrefslogtreecommitdiffstats
path: root/meta-webserver/recipes-php/xdebug/xdebug_2.7.2.bb
diff options
context:
space:
mode:
authorYi Zhao <yi.zhao@windriver.com>2019-06-14 11:20:42 +0800
committerKhem Raj <raj.khem@gmail.com>2019-06-15 16:46:50 -0700
commitb3fc553cb3f357dd9798297693da65102ad62266 (patch)
tree589214086db23a2c82855b9aee0147da80f39339 /meta-webserver/recipes-php/xdebug/xdebug_2.7.2.bb
parent60be27c39b329263f03c76150b32541ed8972f87 (diff)
downloadmeta-openembedded-b3fc553cb3f357dd9798297693da65102ad62266.tar.gz
xdebug: upgrade 2.7.0RC2 -> 2.7.2
Signed-off-by: Yi Zhao <yi.zhao@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-webserver/recipes-php/xdebug/xdebug_2.7.2.bb')
-rw-r--r--meta-webserver/recipes-php/xdebug/xdebug_2.7.2.bb35
1 files changed, 35 insertions, 0 deletions
diff --git a/meta-webserver/recipes-php/xdebug/xdebug_2.7.2.bb b/meta-webserver/recipes-php/xdebug/xdebug_2.7.2.bb
new file mode 100644
index 0000000000..32d52a6f61
--- /dev/null
+++ b/meta-webserver/recipes-php/xdebug/xdebug_2.7.2.bb
@@ -0,0 +1,35 @@
1SUMMARY = "Debugging and profiling extension for PHP"
2LICENSE = "Xdebug"
3LIC_FILES_CHKSUM = "file://LICENSE;md5=92d94a330d34ee6edc2638450736f119"
4
5DEPENDS = "php re2c-native"
6
7SRC_URI = "http://xdebug.org/files/xdebug-${PV}.tgz"
8
9SRC_URI[md5sum] = "5d1a8ca3101df93938d283933f256493"
10SRC_URI[sha256sum] = "b0f3283aa185c23fcd0137c3aaa58554d330995ef7a3421e983e8d018b05a4a6"
11
12UPSTREAM_CHECK_REGEX = "xdebug-(?P<pver>\d+(\.\d+)+)\.tgz"
13
14inherit autotools
15
16EXTRA_OECONF += "--enable-xdebug -with-php-config=${STAGING_BINDIR_CROSS}/php-config"
17
18do_configure() {
19 cd ${S}
20 ${STAGING_BINDIR_CROSS}/phpize
21 cd ${B}
22
23 # Running autoreconf as autotools_do_configure would do here
24 # breaks the libtool configuration resulting in a failure later
25 # in do_compile. It's possible this may be fixable, however the
26 # easiest course of action for the moment is to avoid doing that.
27 oe_runconf
28}
29
30do_install() {
31 oe_runmake install INSTALL_ROOT=${D}
32}
33
34FILES_${PN} += "${libdir}/php*/extensions/*/*.so"
35FILES_${PN}-dbg += "${libdir}/php*/extensions/*/.debug"