curlpp: new package

Signed-off-by: Sergio Prado <sergio.prado@e-labworks.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
This commit is contained in:
Sergio Prado 2017-12-31 09:55:04 -02:00 committed by Thomas Petazzoni
parent 8d8cc1405c
commit eaa4d2ead3
5 changed files with 34 additions and 0 deletions

View File

@ -1567,6 +1567,7 @@ F: package/rtl8189fs/
F: package/xr819-xradio/
N: Sergio Prado <sergio.prado@e-labworks.com>
F: package/curlpp/
F: package/daq/
F: package/libgdiplus/
F: package/mongodb/

View File

@ -1339,6 +1339,7 @@ menu "Networking"
source "package/canfestival/Config.in"
source "package/cgic/Config.in"
source "package/cppzmq/Config.in"
source "package/curlpp/Config.in"
source "package/czmq/Config.in"
source "package/daq/Config.in"
source "package/filemq/Config.in"

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))