diff options
author | Kazumasa Mitsunari <knimitz@witz-inc.co.jp> | 2017-10-23 23:52:46 +0900 |
---|---|---|
committer | Kazumasa Mitsunari <knimitz@witz-inc.co.jp> | 2017-10-31 09:08:27 +0000 |
commit | 7ad0d6bcd846b4b4efa0bbaf14cb29c882605b2e (patch) | |
tree | 26ad1f7fd0a0014caad5a0070a43ad363bb4b87c /meta-hmi-framework/recipes-graphics/agl-service-windowmanager-2017/agl-service-windowmanager-2017_git.bb | |
parent | 1d17992c42b68f6dfdfaffcec1a482ea67007fd4 (diff) |
Split library from windowmanager
To improve independency, library from windowmanager service binder should be splitted
[Patch Sets 2]
- Remove installation of layers.json.
It is included in CMakeFile.
https://gerrit.automotivelinux.org/gerrit/#/c/11523/
- Remove unnecessary tabs.
[Patch Sets 3]
- Rename the recipe
[Patch Sets 4]
- Modified description about recipes
- Moved S variables after SRC_URI
Change-Id: I37c394991f8f18359bcf6816e9edd82e6442ce5b
Signed-off-by: Kazumasa Mitsunari <knimitz@witz-inc.co.jp>
Signed-off-by: Yuta Doi <yuta-d@witz-inc.co.jp>
Diffstat (limited to 'meta-hmi-framework/recipes-graphics/agl-service-windowmanager-2017/agl-service-windowmanager-2017_git.bb')
-rw-r--r-- | meta-hmi-framework/recipes-graphics/agl-service-windowmanager-2017/agl-service-windowmanager-2017_git.bb | 28 |
1 files changed, 7 insertions, 21 deletions
diff --git a/meta-hmi-framework/recipes-graphics/agl-service-windowmanager-2017/agl-service-windowmanager-2017_git.bb b/meta-hmi-framework/recipes-graphics/agl-service-windowmanager-2017/agl-service-windowmanager-2017_git.bb index addee324..3207b79b 100644 --- a/meta-hmi-framework/recipes-graphics/agl-service-windowmanager-2017/agl-service-windowmanager-2017_git.bb +++ b/meta-hmi-framework/recipes-graphics/agl-service-windowmanager-2017/agl-service-windowmanager-2017_git.bb @@ -1,32 +1,18 @@ -SUMMARY = "Window Manager binding and client library for application" -DESCRIPTION = "Window Manager 2017 is the binding library \ - " -HOMEPAGE = "" -S = "${WORKDIR}/git" +SUMMARY = "Window Manager service binding for applications" +DESCRIPTION = "Window Manager 2017 is the service binding for controlling rendering rights \ + Applications requests to render itself, then Window Manager check policy and notify layout to respective applications \ + " +HOMEPAGE = "https://wiki.automotivelinux.org/windowmanager" SECTION = "graphics" LICENSE = "Apache-2.0" LIC_FILES_CHKSUM = "file://LICENSE;md5=2ee41112a44fe7014dce33e26468ba93" DEPENDS = "af-binder json-c wayland wayland-ivi-extension wayland-native" -RDEPENDS_${PN} = " \ - " SRC_URI = "git://gerrit.automotivelinux.org/gerrit/apps/agl-service-windowmanager-2017;protocol=https;branch=master" -SRCREV = "d5eb8b53ed088db5a25451fc7e3009d3e44ae6bd" +SRCREV = "9d25a6eaeb93ab7c732b3dbca28b6fa86b15347c" +S = "${WORKDIR}/git" inherit cmake aglwgt #If you would like to output log, uncomment out #EXTRA_OECMAKE = " -DENABLE_DEBUG_OUTPUT=ON " - -do_install_append() { - install -d ${D}${sysconfdir}/windowmanager - install -m 0644 ${S}/layers.json ${D}${sysconfdir}/windowmanager/ - install -d ${D}${libdir}/pkgconfig - install -m 0644 ${B}/windowmanager.pc ${D}${libdir}/pkgconfig - install -d ${D}${includedir} - install -m 0644 ${S}/libwindowmanager/libwindowmanager.h ${D}${includedir} - - install -m -0755 ${B}/libwindowmanager/libwindowmanager.so ${D}${libdir}/libwindowmanager.so.0.1 - ln -sf libwindowmanager.so.0.1 ${D}${libdir}/libwindowmanager.so -} -FILES_${PN} += "${sysconfdir}/windowmanager/layers.json" |