diff options
author | Vicente Olivert Riera <Vincent.Riera@imgtec.com> | 2016-05-23 15:51:36 +0100 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2016-05-31 21:32:27 +0200 |
commit | 9d119288ea369fada7bf8811ac2300f828645fd6 (patch) | |
tree | ae7755437bd554c72d1c231580449452eb03223f /package/php-yaml/php-yaml.mk | |
parent | 08af64d6a5e7d6b37c954335e2b4c7e96e2e3647 (diff) | |
download | buildroot-9d119288ea369fada7bf8811ac2300f828645fd6.tar.gz buildroot-9d119288ea369fada7bf8811ac2300f828645fd6.zip |
php-yaml: re add package, now compatible with PHP 7
Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/php-yaml/php-yaml.mk')
-rw-r--r-- | package/php-yaml/php-yaml.mk | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/package/php-yaml/php-yaml.mk b/package/php-yaml/php-yaml.mk new file mode 100644 index 0000000000..27118906d4 --- /dev/null +++ b/package/php-yaml/php-yaml.mk @@ -0,0 +1,26 @@ +################################################################################ +# +# php-yaml +# +################################################################################ + +PHP_YAML_VERSION = 2.0.0RC7 +PHP_YAML_SOURCE = yaml-$(PHP_YAML_VERSION).tgz +PHP_YAML_SITE = https://pecl.php.net/get +PHP_YAML_CONF_OPTS = --with-php-config=$(STAGING_DIR)/usr/bin/php-config \ + --with-yaml=$(STAGING_DIR)/usr +# phpize does the autoconf magic +PHP_YAML_DEPENDENCIES = libyaml php host-autoconf +PHP_YAML_LICENSE = MIT +PHP_YAML_LICENSE_FILES = LICENSE + +define PHP_YAML_PHPIZE + (cd $(@D); \ + PHP_AUTOCONF=$(HOST_DIR)/usr/bin/autoconf \ + PHP_AUTOHEADER=$(HOST_DIR)/usr/bin/autoheader \ + $(STAGING_DIR)/usr/bin/phpize) +endef + +PHP_YAML_PRE_CONFIGURE_HOOKS += PHP_YAML_PHPIZE + +$(eval $(autotools-package)) |