diff options
author | zheng_wenlong <wenlong_zheng@nexty-ele.com> | 2017-09-29 21:47:25 +0900 |
---|---|---|
committer | Jan-Simon Möller <jsmoeller@linuxfoundation.org> | 2017-10-12 16:52:13 +0200 |
commit | 7d7fe0e26af1a27b7a3e2256f6ef48965b3239ed (patch) | |
tree | a4c24b048969636d0522e939770d21c0fde83e7a /meta-hmi-framework/recipes-multimedia/agl-service-soundmanager-2017/agl-service-soundmanager-2017_git.bb | |
parent | 9a58b814a852f6b761b22f5c8f41cb8489dae628 (diff) |
Add recipes for new hmi fweel_4.99.1eel/4.99.14.99.1
Add recipesc for agl-service-windowmanager-2017,
agl-service-soundmanager-2017,
agl-service-homescreen-2017 and homescreen-2017.
[Patch Sets 2]
Modify homescreen-2017_git.bb to use aglwgt make package.
[Patch Sets 3]
Modify agl-service-windowmanager-2017_git.bb to use aglwgt make package.
Modify agl-service-soundmanager-2017_git.bb to use aglwgt make package.
[Patch Sets 4]
Modify agl-service-homescreen-2017_git.bb to use aglwgt make package.
[Patch Sets 5] (jsmoeller)
Modify layer and add packagegroup containing the required packages.
Modify feature name to be agl-hmi-framework to be consistent in naming
Mofify local.conf.inc to set DISTRO_FEATURES flag instead of setting IMAGE_INSTALL.
Change-Id: Iac998b5c9ed519649c8c367e97a5aa31c6140c26
Signed-off-by: zheng_wenlong <wenlong_zheng@nexty-ele.com>
Signed-off-by: Jan-Simon Möller <jsmoeller@linuxfoundation.org>
Diffstat (limited to 'meta-hmi-framework/recipes-multimedia/agl-service-soundmanager-2017/agl-service-soundmanager-2017_git.bb')
-rw-r--r-- | meta-hmi-framework/recipes-multimedia/agl-service-soundmanager-2017/agl-service-soundmanager-2017_git.bb | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/meta-hmi-framework/recipes-multimedia/agl-service-soundmanager-2017/agl-service-soundmanager-2017_git.bb b/meta-hmi-framework/recipes-multimedia/agl-service-soundmanager-2017/agl-service-soundmanager-2017_git.bb new file mode 100644 index 00000000..0b6504fd --- /dev/null +++ b/meta-hmi-framework/recipes-multimedia/agl-service-soundmanager-2017/agl-service-soundmanager-2017_git.bb @@ -0,0 +1,32 @@ +SUMMARY = "Sound Manager binding and client library for application" +ESCRIPTION = "Sound Manager is the binding library to communicate \ + with Genivi Audio Manager. Genivi Audio Manager is the policy manager \ + about sound. It controls volume and routing according to various situations.\ + This recipe also provides client library to communicate with sound manager. \ + " +HOMEPAGE = "https://wiki.automotivelinux.org/soundmanager" +S = "${WORKDIR}/git" +SECTION = "multimedia" +LICENSE = "Apache-2.0" +LIC_FILES_CHKSUM = "file://LICENSE;md5=ae6497158920d9524cf208c09cc4c984" +DEPENDS = "dbus glib-2.0 af-binder json-c" +RDEPENDS_${PN} = "audiomanager audiomanager-plugins" + +SRC_URI = "git://gerrit.automotivelinux.org/gerrit/apps/agl-service-soundmanager-2017;protocol=https;branch=master" +SRCREV = "4bf8930f4f56eae60cf4562b9a601c828f2bd501" + +inherit cmake aglwgt + +do_install_append() { + install -d ${D}${sysconfdir}/dbus-1/system.d + install -m 0644 ${S}/conf/soundmanager-dbus.conf ${D}${sysconfdir}/dbus-1/system.d/ + install -d ${D}${libdir}/pkgconfig + install -m 0644 ${B}/soundmanager.pc ${D}${libdir}/pkgconfig + install -d ${D}${includedir} + install -m 0644 ${S}/include/libsoundmanager.hpp ${D}${includedir} + + install -m -0755 ${B}/libsoundmanager/libsoundmanager.so ${D}${libdir}/libsoundmanager.so.0.1 + ln -sf libsoundmanager.so.0.1 ${D}${libdir}/libsoundmanager.so +} + +FILES_${PN} += "${sysconfdir}/dbus-1/system.d/soundmanager-dbus.conf" |