aboutsummaryrefslogtreecommitdiffstats
path: root/packages/cortexa57-poky-linux/glibc-locale/glibc-locale-nl/latest
blob: 0e7a4375acb6a431d07cc3495f6740d567c957f9 (plain)
1
2
3
4
5
6
7
8
PV = 2.36
PR = r0
RPROVIDES = glibc-locale nl-translation
RDEPENDS = 
RRECOMMENDS = virtual-locale-nl
PKGSIZE = 0
FILES = /usr/share/locale/nl
FILELIST = 
n value='2024-02-15_01-22-55_master-next_aws-crt-cpp'>2024-02-15_01-22-55_master-next_aws-crt-cpp Layer containing Amazon Web Services (AWS) device software support metadataGrokmirror user
aboutsummaryrefslogtreecommitdiffstats
path: root/recipes-sdk/aws-c-iot/aws-c-iot_0.1.19.bb
blob: 028c4683345b389d530c86ee8584636dcd05c17a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
SUMMARY = "AWS C IoT"
DESCRIPTION = "C99 implementation of AWS IoT cloud services integration with devices"

HOMEPAGE = "https://github.com/awslabs/aws-c-iot"

LICENSE = "Apache-2.0"
LIC_FILES_CHKSUM = "file://LICENSE;md5=2ee41112a44fe7014dce33e26468ba93"

DEPENDS += "\
    aws-c-auth \
    aws-c-common \
    aws-c-event-stream \
    aws-c-http \
    aws-c-io \
    aws-c-mqtt \
    aws-c-s3 \
    aws-checksums \
    aws-crt-cpp \
    s2n \
    openssl \
    "

PROVIDES += "aws/aws-c-iot"

BRANCH ?= "main"

SRC_URI = "\
    git://github.com/awslabs/aws-c-iot.git;protocol=https;branch=${BRANCH} \
    file://run-ptest \
    "

SRCREV = "646f9e86eb35e12f45180761e47ebb9ed47923d5"

S = "${WORKDIR}/git"

inherit cmake ptest pkgconfig

PACKAGECONFIG ??= "\
    ${@bb.utils.contains('PTEST_ENABLED', '1', 'with-tests', '', d)} \
    "

# enable PACKAGECONFIG = "static" to build static instead of shared libs
PACKAGECONFIG[static] = "-DBUILD_SHARED_LIBS=OFF,-DBUILD_SHARED_LIBS=ON"

# CMAKE_CROSSCOMPILING=ON will disable building the tests
PACKAGECONFIG[with-tests] = "-DBUILD_TESTING=ON -DCMAKE_CROSSCOMPILING=OFF,-DBUILD_TESTING=OFF,"

FILES:${PN}-dev += "${libdir}/*/cmake"

CFLAGS:append = " -Wl,-Bsymbolic"
EXTRA_OECMAKE += "\
    -DCMAKE_MODULE_PATH=${STAGING_LIBDIR}/cmake \
    -DCMAKE_PREFIX_PATH=$D/usr \
    -DCMAKE_INSTALL_PREFIX=$D/usr \
"

do_install_ptest () {
   install -d ${D}${PTEST_PATH}/tests
   cp -r ${B}/tests/* ${D}${PTEST_PATH}/tests/
   install -m 0755 ${B}/tests/aws-c-iot-tests ${D}${PTEST_PATH}/tests/
}

BBCLASSEXTEND = "native nativesdk"