diff options
author | Caio Toledo <caioviniciusdetoledo@gmail.com> | 2020-12-15 14:56:06 +0000 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2020-12-17 09:12:27 -0800 |
commit | 7282a97430a1ea24e516ad95b6a36c5751b9d256 (patch) | |
tree | 9f3e6b67c0c8a7527077b61f5cbe1a9925cec949 | |
parent | af6f068632281f8abd42dd3e3301eddd2b0d3ae4 (diff) | |
download | meta-openembedded-7282a97430a1ea24e516ad95b6a36c5751b9d256.tar.gz |
Add recipe for dbus-cxx
Signed-off-by: Caio Toledo <caioviniciusdetoledo@gmail.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
-rw-r--r-- | meta-oe/recipes-core/dbus-cxx/dbus-cxx_0.12.bb | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/meta-oe/recipes-core/dbus-cxx/dbus-cxx_0.12.bb b/meta-oe/recipes-core/dbus-cxx/dbus-cxx_0.12.bb new file mode 100644 index 0000000000..44f8180bc9 --- /dev/null +++ b/meta-oe/recipes-core/dbus-cxx/dbus-cxx_0.12.bb | |||
@@ -0,0 +1,24 @@ | |||
1 | SUMMARY = "D-Bus wrapper in C++ for dbus" | ||
2 | HOMEPAGE = "https://dbus-cxx.github.io/" | ||
3 | SECTION = "base" | ||
4 | LICENSE = "GPLv3" | ||
5 | LIC_FILES_CHKSUM = "file://COPYING;md5=4cf0188f02184e1e84b9586ac53c3f83" | ||
6 | |||
7 | SRC_URI = "git://github.com/dbus-cxx/dbus-cxx.git;branch=master" | ||
8 | SRCREV = "ea7f8e361d11dc7d41d9ae2c4128aed2cdadd84e" | ||
9 | |||
10 | DEPENDS = "\ | ||
11 | dbus \ | ||
12 | libsigc++-2.0 \ | ||
13 | " | ||
14 | |||
15 | RDEPENDS_${PN} = "\ | ||
16 | dbus \ | ||
17 | libsigc++-2.0 \ | ||
18 | " | ||
19 | |||
20 | S = "${WORKDIR}/git" | ||
21 | |||
22 | inherit pkgconfig cmake | ||
23 | |||
24 | OECMAKE_FIND_ROOT_PATH_MODE_PROGRAM = "BOTH" | ||