Commit 534039b3 authored by Gustavo Zacarias's avatar Gustavo Zacarias Committed by Peter Korsgaard
Browse files

php-yaml: new package

parent efeda1bc
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -397,6 +397,7 @@ source "package/php/Config.in"
if BR2_PACKAGE_PHP
if !BR2_PREFER_STATIC_LIB
menu "External php extensions"
source "package/php-yaml/Config.in"
source "package/php-zmq/Config.in"
endmenu
endif
+8 −0
Original line number Diff line number Diff line
config BR2_PACKAGE_PHP_YAML
	bool "php-yaml"
	depends on BR2_PACKAGE_PHP
	select BR2_PACKAGE_LIBYAML
	help
	  PHP YAML-1.1 parser and emitter.

	  http://pecl.php.net/package/yaml
+26 −0
Original line number Diff line number Diff line
################################################################################
#
# php-yaml
#
################################################################################

PHP_YAML_VERSION = 1.1.1
PHP_YAML_SOURCE = yaml-$(PHP_YAML_VERSION).tgz
PHP_YAML_SITE = http://pecl.php.net/get
PHP_YAML_CONF_OPT = --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))