initial buildroot for linux 5.15

This commit is contained in:
Huan.Feng
2021-12-06 14:12:13 +08:00
parent d7767d594e
commit 7b6fc358fa
12736 changed files with 508822 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
config BR2_PACKAGE_PHP_YAML
bool "php-yaml"
select BR2_PACKAGE_LIBYAML
help
PHP YAML-1.1 parser and emitter.
http://pecl.php.net/package/yaml
+3
View File
@@ -0,0 +1,3 @@
# Locally calculated
sha256 e17ad04e752e25fd099bddd2df9d26dfef183c8d00c4179bc9d7a2e1c97d7819 yaml-2.2.1.tgz
sha256 68d9700294396c72089bfc7bf38a5b3654a53ae415f3bd37768848c14e86f338 LICENSE
+26
View File
@@ -0,0 +1,26 @@
################################################################################
#
# php-yaml
#
################################################################################
PHP_YAML_VERSION = 2.2.1
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)/bin/autoconf \
PHP_AUTOHEADER=$(HOST_DIR)/bin/autoheader \
$(STAGING_DIR)/usr/bin/phpize)
endef
PHP_YAML_PRE_CONFIGURE_HOOKS += PHP_YAML_PHPIZE
$(eval $(autotools-package))