31 lines
1.1 KiB
BlitzBasic
31 lines
1.1 KiB
BlitzBasic
|
|
# Copyright (c) 2012-2014 LG Electronics, Inc.
|
||
|
|
SUMMARY = "c-ares is a C library that resolves names asynchronously."
|
||
|
|
HOMEPAGE = "http://daniel.haxx.se/projects/c-ares/"
|
||
|
|
SECTION = "libs"
|
||
|
|
LICENSE = "MIT"
|
||
|
|
LIC_FILES_CHKSUM = "file://LICENSE.md;md5=fdbc58a6da11a9f68aa73c453818decc"
|
||
|
|
|
||
|
|
SRC_URI = "https://github.com/c-ares/c-ares/releases/download/cares-1_27_0/${BPN}-${PV}.tar.gz \
|
||
|
|
file://run-ptest"
|
||
|
|
SRC_URI[sha256sum] = "0a72be66959955c43e2af2fbd03418e82a2bd5464604ec9a62147e37aceb420b"
|
||
|
|
|
||
|
|
PACKAGECONFIG ?= "${@bb.utils.contains('PTEST_ENABLED', '1', 'tests', '', d)}"
|
||
|
|
PACKAGECONFIG[manpages] = ""
|
||
|
|
PACKAGECONFIG[tests] = "-DCARES_BUILD_TESTS=ON,-DCARES_BUILD_TESTS=OFF,googletest"
|
||
|
|
|
||
|
|
inherit cmake manpages pkgconfig ptest
|
||
|
|
|
||
|
|
EXTRA_OECMAKE = "-DCARES_STATIC=${@ 'ON' if d.getVar('DISABLE_STATIC') == '' else 'OFF' }"
|
||
|
|
|
||
|
|
do_install_ptest () {
|
||
|
|
install -d ${D}${PTEST_PATH}
|
||
|
|
install -m 0755 ${B}/bin/arestest ${D}${PTEST_PATH}
|
||
|
|
install -m 0755 ${WORKDIR}/run-ptest ${D}${PTEST_PATH}
|
||
|
|
}
|
||
|
|
|
||
|
|
PACKAGE_BEFORE_PN = "${PN}-utils"
|
||
|
|
|
||
|
|
FILES:${PN}-utils = "${bindir}"
|
||
|
|
|
||
|
|
BBCLASSEXTEND = "native nativesdk"
|