blob: f76641e51dec8395ac6a5d29b2151602107e349f (
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
|
SUMMARY = "WAM"
AUTHOR = "Jani Hautakangas <jani.hautakangas@lge.com>"
LICENSE = "Apache-2.0"
LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/Apache-2.0;md5=89aea4e17d99a7cacdbeed46a0096b10"
DEPENDS = "glib-2.0 jsoncpp boost protobuf protobuf-native grpc grpc-native"
SRC_URI = "\
git://github.com/igalia/${BPN}.git;branch=@58.agl;protocol=https \
file://WebAppMgrCli \
file://WebAppMgr.service \
file://WebAppMgr.env \
file://WebAppMgr-cef.env \
"
SRCREV = "4fbd6e648913bcf0fba63e4460eb44242c11f71b"
PV = "ose58.agl"
S = "${WORKDIR}/git"
inherit cmake pkgconfig systemd
# Disable some of security flags
# Disable D_FORTIFY_SOURCE=2 and -fstack-protector-strong
# Refer conf/distro/include/security_flags.inc in meta-webos/conf/distro/include/webos.inc
lcl_maybe_fortify = ""
SECURITY_STACK_PROTECTOR = ""
SYSTEMD_SERVICE:${PN} = "WebAppMgr.service"
do_install:append() {
install -v -d ${D}${sysconfdir}/wam
install -v -m 644 ${S}/files/launch/security_policy.conf ${D}${sysconfdir}/wam/security_policy.conf
install -v -D -m 644 ${WORKDIR}/WebAppMgr.service ${D}${systemd_system_unitdir}/WebAppMgr.service
install -v -D -m 755 ${WORKDIR}/WebAppMgrCli ${D}${bindir}/WebAppMgrCli
}
CXXFLAGS:append:agl-devel = " -DAGL_DEVEL"
do_install:append:agl-devel() {
# Enable remote inspector and dev mode
install -d ${D}${localstatedir}/agl-devel/preferences
touch ${D}${localstatedir}/agl-devel/preferences/debug_system_apps
touch ${D}${localstatedir}/agl-devel/preferences/devmode_enabled
}
require wam-cef.inc
FILES:${PN} += "${sysconfdir}/init \
${sysconfdir}/wam \
${bindir} \
${libdir}/webappmanager/plugins/*.so"
RDEPENDS:${PN} += " bash grpc-web-proxy"
|