[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

12
package/curlpp/Config.in Normal file
View File

@ -0,0 +1,12 @@
config BR2_PACKAGE_CURLPP
bool "curlpp"
depends on BR2_INSTALL_LIBSTDCPP
depends on !BR2_STATIC_LIBS
select BR2_PACKAGE_LIBCURL
help
cURLpp is a C++ wrapper for libcURL.
http://www.curlpp.org/
comment "curlpp needs a toolchain w/ C++, dynamic library"
depends on !BR2_INSTALL_LIBSTDCPP || BR2_STATIC_LIBS

View File

@ -0,0 +1,5 @@
# Locally computed:
sha256 97e3819bdcffc3e4047b6ac57ca14e04af85380bd93afe314bee9dd5c7f46a0a v0.8.1.tar.gz
# Hash for license files:
sha256 8b9e3afd4d06ad3c169e788e5187a3e9f4f35671e9a7322f7e74bea9643b5b5a doc/LICENSE

15
package/curlpp/curlpp.mk Normal file
View File

@ -0,0 +1,15 @@
################################################################################
#
# curlpp
#
################################################################################
CURLPP_VERSION = 0.8.1
CURLPP_SITE = https://github.com/jpbarrette/curlpp/archive
CURLPP_SOURCE = v$(CURLPP_VERSION).tar.gz
CURLPP_LICENSE = MIT
CURLPP_LICENSE_FILES = doc/LICENSE
CURLPP_INSTALL_STAGING = YES
CURLPP_DEPENDENCIES = libcurl
$(eval $(cmake-package))