mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2025-07-19 15:29:08 +02:00

Fixes WARNING: curlpp-0.8.1-r0 do_package_qa: QA Issue: File /usr/bin/curlpp-config in package curlpp-dev contains reference to TMPDIR [buildpaths] Signed-off-by: Khem Raj <raj.khem@gmail.com>
27 lines
787 B
BlitzBasic
27 lines
787 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;branch=master;protocol=https \
|
|
file://0001-curlpp-config.in-Remove-references-to-absolute-build.patch"
|
|
|
|
SRCREV = "592552a165cc569dac7674cb7fc9de3dc829906f"
|
|
|
|
S = "${WORKDIR}/git"
|
|
|
|
inherit cmake pkgconfig binconfig
|
|
|
|
BBCLASSEXTEND = "native nativesdk"
|
|
|
|
do_install:append() {
|
|
sed -e 's@[^ ]*-ffile-prefix-map=[^ "]*@@g' \
|
|
-e 's@[^ ]*-fdebug-prefix-map=[^ "]*@@g' \
|
|
-e 's@[^ ]*-fmacro-prefix-map=[^ "]*@@g' \
|
|
-i ${D}${libdir}/pkgconfig/*.pc
|
|
}
|