[Mod] First commit

This commit is contained in:
2022-10-31 22:18:58 +08:00
commit 1c8a3d9709
13090 changed files with 526733 additions and 0 deletions

15
package/jsoncpp/Config.in Normal file
View File

@ -0,0 +1,15 @@
config BR2_PACKAGE_JSONCPP
bool "jsoncpp"
depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_7 # C++11
depends on BR2_INSTALL_LIBSTDCPP
help
JsonCpp is a C++ library that allows manipulating JSON
values, including serialization and deserialization to and
from strings. It can also preserve existing comment in
unserialization/serialization steps, making it a convenient
format to store user input files.
https://github.com/open-source-parsers/jsoncpp
comment "jsoncpp needs a toolchain w/ C++, gcc >= 4.7"
depends on !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_GCC_AT_LEAST_4_7

View File

@ -0,0 +1,3 @@
# Locally computed
sha256 f409856e5920c18d0c2fb85276e24ee607d2a09b5e7d5f0a371368903c275da2 jsoncpp-1.9.5.tar.gz
sha256 cec0db5f6d7ed6b3a72647bd50aed02e13c3377fd44382b96dc2915534c042ad LICENSE

View File

@ -0,0 +1,15 @@
################################################################################
#
# jsoncpp
#
################################################################################
JSONCPP_VERSION = 1.9.5
JSONCPP_SITE = $(call github,open-source-parsers,jsoncpp,$(JSONCPP_VERSION))
JSONCPP_LICENSE = Public Domain or MIT
JSONCPP_LICENSE_FILES = LICENSE
JSONCPP_CPE_ID_VENDOR = jsoncpp_project
JSONCPP_INSTALL_STAGING = YES
JSONCPP_CONF_OPTS = -Dtests=false
$(eval $(meson-package))