bump version to 2022.02.9

add miyoo_defconfig
This commit is contained in:
tiopex
2023-01-31 13:11:45 +01:00
parent 1fa746c353
commit dcdaa3599c
8423 changed files with 184305 additions and 91107 deletions

7
package/inih/Config.in Normal file
View File

@@ -0,0 +1,7 @@
config BR2_PACKAGE_INIH
bool "inih"
help
inih (INI Not Invented Here) is a simple .INI file parser
written in C.
https://github.com/benhoyt/inih/

3
package/inih/inih.hash Normal file
View File

@@ -0,0 +1,3 @@
# Locally computed
sha256 01b0366fdfdf6363efc070c2f856f1afa33e7a6546548bada5456ad94a516241 inih-53.tar.gz
sha256 9ae3b39e83e9158e44b67733baa3bb2d84e80efdcfb14a5820210a42c7abdf7f LICENSE.txt

20
package/inih/inih.mk Normal file
View File

@@ -0,0 +1,20 @@
################################################################################
#
# inih
#
################################################################################
INIH_VERSION = 53
INIH_SITE = $(call github,benhoyt,inih,r$(INIH_VERSION))
INIH_INSTALL_STAGING = YES
INIH_LICENSE = BSD-3-Clause
INIH_LICENSE_FILES = LICENSE.txt
INIH_CONF_OPTS = -Ddistro_install=true
ifeq ($(BR2_INSTALL_LIBSTDCPP),y)
INIH_CONF_OPTS += -Dwith_INIReader=true
else
INIH_CONF_OPTS += -Dwith_INIReader=false
endif
$(eval $(meson-package))