[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

View File

@ -0,0 +1,13 @@
config BR2_PACKAGE_RESTCLIENT_CPP
bool "restclient-cpp"
depends on BR2_INSTALL_LIBSTDCPP
depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_8 # C++11
select BR2_PACKAGE_LIBCURL
help
restclient-cpp is a C++ client library for
making HTTP/REST requests
http://code.mrtazz.com/restclient-cpp/
comment "restclient-cpp needs a toolchain w/ C++, gcc >= 4.8"
depends on !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_GCC_AT_LEAST_4_8

View File

@ -0,0 +1,3 @@
# Computed locally
sha256 d62ba618f9a938652fd53b483289e8662a99451839e59058c8beb286dfbc65ec restclient-cpp-0.5.2.tar.gz
sha256 1c2f79e825a39eb61d8919044776627f4d079ff38975410a3bde340154fc94a4 LICENSE

View File

@ -0,0 +1,18 @@
################################################################################
#
# restclient-cpp
#
################################################################################
RESTCLIENT_CPP_VERSION = 0.5.2
RESTCLIENT_CPP_SITE = $(call github,mrtazz,restclient-cpp,$(RESTCLIENT_CPP_VERSION))
RESTCLIENT_CPP_LICENSE = MIT
RESTCLIENT_CPP_LICENSE_FILES = LICENSE
RESTCLIENT_CPP_INSTALL_STAGING = YES
# Source from github, no configure script provided
RESTCLIENT_CPP_AUTORECONF = YES
RESTCLIENT_CPP_DEPENDENCIES = libcurl
$(eval $(autotools-package))