package/restclient-cpp: new package

restclient-cpp is a simple REST client library for C++

Signed-off-by: Gilles Talis <gilles.talis@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
This commit is contained in:
Gilles Talis 2019-08-10 07:23:53 +02:00 committed by Thomas Petazzoni
parent 32e9dad7d2
commit 014c47cfbf
5 changed files with 36 additions and 0 deletions

View File

@ -946,6 +946,7 @@ F: package/httping/
F: package/iozone/
F: package/leptonica/
F: package/ocrad/
F: package/restclient-cpp/
F: package/tesseract-ocr/
F: package/webp/
F: package/xapian/

View File

@ -1649,6 +1649,7 @@ menu "Networking"
source "package/qdecoder/Config.in"
source "package/qpid-proton/Config.in"
source "package/rabbitmq-c/Config.in"
source "package/restclient-cpp/Config.in"
source "package/rtmpdump/Config.in"
source "package/slirp/Config.in"
source "package/snmppp/Config.in"

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 6ae98c65333214d13d765d8fde04ec696f88ce349a419df0fbfc4564bc779df3 restclient-cpp-0.5.1.tar.gz
sha256 1c2f79e825a39eb61d8919044776627f4d079ff38975410a3bde340154fc94a4 LICENSE

View File

@ -0,0 +1,18 @@
################################################################################
#
# restclient-cpp
#
################################################################################
RESTCLIENT_CPP_VERSION = 0.5.1
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))