mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-07-16 04:17:25 +00:00
9acda33c69
This patch fixes three issues: 1. The recipe used "libcurlpp" for its package base name. It defined PACKAGES and corresponding package contents manually, but the non-standard naming led to an error message when trying to depend on it (nothing provides curlpp needed by curlpp-dev). See also https://lists.yoctoproject.org/pipermail/poky/2018-February/011236.html. Fixed by removing PACKAGES and corresponding FILES_*, relying on automatic packaging now. 2. Upstream ships a license file (MIT), which is referenced by the recipe now (instead of the stock COPYING.MIT file). 3. There was a do_install_append() function which patched the installed curlpp.pc file. Since it seemed to be of no use, it was removed. Signed-off-by: Robert Tiemann <rtie@gmx.de> Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Armin Kuster <akuster808@gmail.com>
19 lines
457 B
BlitzBasic
19 lines
457 B
BlitzBasic
SUMMARY = "C++ library for client-side URL transfers"
|
|
HOMEPAGE = "http://www.curlpp.org/"
|
|
SECTION = "libdevel"
|
|
LICENSE = "MIT"
|
|
LIC_FILES_CHKSUM = "file://doc/LICENSE;md5=fd0c9adf285a69aa3b4faf34384e1029"
|
|
|
|
DEPENDS = "curl"
|
|
DEPENDS_class-native = "curl-native"
|
|
|
|
SRC_URI = "git://github.com/jpbarrette/curlpp.git"
|
|
|
|
SRCREV = "592552a165cc569dac7674cb7fc9de3dc829906f"
|
|
|
|
S = "${WORKDIR}/git"
|
|
|
|
inherit cmake pkgconfig binconfig
|
|
|
|
BBCLASSEXTEND = "native nativesdk"
|