mirror of
https://github.com/motioneye-project/motioneyeos.git
synced 2025-08-01 07:27:43 +00:00
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:
parent
efeda1bc48
commit
534039b329
@ -397,6 +397,7 @@ source "package/php/Config.in"
|
|||||||
if BR2_PACKAGE_PHP
|
if BR2_PACKAGE_PHP
|
||||||
if !BR2_PREFER_STATIC_LIB
|
if !BR2_PREFER_STATIC_LIB
|
||||||
menu "External php extensions"
|
menu "External php extensions"
|
||||||
|
source "package/php-yaml/Config.in"
|
||||||
source "package/php-zmq/Config.in"
|
source "package/php-zmq/Config.in"
|
||||||
endmenu
|
endmenu
|
||||||
endif
|
endif
|
||||||
|
8
package/php-yaml/Config.in
Normal file
8
package/php-yaml/Config.in
Normal 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
|
26
package/php-yaml/php-yaml.mk
Normal file
26
package/php-yaml/php-yaml.mk
Normal 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))
|
Loading…
x
Reference in New Issue
Block a user