php-yaml: new package

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
This commit is contained in:
Gustavo Zacarias 2014-01-28 18:26:29 -03:00 committed by Peter Korsgaard
parent efeda1bc48
commit 534039b329
3 changed files with 35 additions and 0 deletions

View File

@ -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

View File

@ -0,0 +1,8 @@
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

View File

@ -0,0 +1,26 @@
################################################################################
#
# 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))