blob: e66a9600866bb73f5e1a8766e367d3a6ec63ceef (
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
|
SUMMARY = "App Launcher for the AGL Demonstrator @ CES2017"
DESCRIPTION = "App Lanucher app in QML format for the AGL Demonstrator @ CESS2017"
HOMEPAGE = "https://git.automotivelinux.org/gerrit/#/admin/projects/AGL/DemoApps/CES2017"
LICENSE = "MPL-2.0"
SECTION = "apps"
PV = "1.0+git${SRCPV}"
S = "${WORKDIR}/git/"
PN = "ces2017-demo"
inherit qmake5
DEPENDS = "homescreen zip-native qtmultimedia qtquickcontrols2"
LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=815ca599c9df247a0c7f619bab123dad"
SRC_URI = "git://gerrit.automotivelinux.org/gerrit/AGL/DemoApps/CES2017;protocol=http"
SRCREV = "${AUTOREV}"
RDEPENDS_${PN} += " \
qtmultimedia-qmlplugins \
qtmultimedia-rtlfm-radio-plugin \
qtquickcontrols-qmlplugins \
qtquickcontrols2-qmlplugins \
qtsvg-plugins \
"
do_install_prepend() {
echo "<?xml version=\"1.0\" encoding=\"UTF-8\"?> \
<widget xmlns=\"http://www.w3.org/ns/widgets\" id=\"controls\" version=\"0.1\"> \
<name>Controls</name> \
<content src=\"controls\" type=\"application/x-executable\"/> \
<description>Controls app.</description> \
<author>Qt</author> \
<icon src=\"controls.png\"/> \
<license>Apache 2.0</license> \
</widget> \
" > ${B}/apps/Controls/config.xml
cd ${B}/apps/Controls/
zip controls.wgt config.xml controls
echo "<?xml version=\"1.0\" encoding=\"UTF-8\"?> \
<widget xmlns=\"http://www.w3.org/ns/widgets\" id=\"dashboard\" version=\"0.1\"> \
<name>Dashboard</name> \
<content src=\"dashboard\" type=\"application/x-executable\"/> \
<description>Dashboard app.</description> \
<author>Qt</author> \
<icon src=\"dashboard.png\"/> \
<license>Apache 2.0</license> \
</widget> \
" > ${B}/apps/Dashboard/config.xml
cd ${B}/apps/Dashboard/
zip dashboard.wgt config.xml dashboard
echo "<?xml version=\"1.0\" encoding=\"UTF-8\"?> \
<widget xmlns=\"http://www.w3.org/ns/widgets\" id=\"phone\" version=\"0.1\"> \
<name>Phone</name> \
<content src=\"phone\" type=\"application/x-executable\"/> \
<description>Phone app.</description> \
<author>Qt</author> \
<icon src=\"phone.png\"/> \
<license>Apache 2.0</license> \
</widget> \
" > ${B}/apps/Phone/config.xml
cd ${B}/apps/Phone/
zip phone.wgt config.xml phone
echo "<?xml version=\"1.0\" encoding=\"UTF-8\"?> \
<widget xmlns=\"http://www.w3.org/ns/widgets\" id=\"radio\" version=\"0.1\"> \
<name>Radio</name> \
<content src=\"radio\" type=\"application/x-executable\"/> \
<description>Radio app.</description> \
<author>Qt</author> \
<icon src=\"radio.png\"/> \
<license>Apache 2.0</license> \
</widget> \
" > ${B}/apps/Radio/config.xml
cd ${B}/apps/Radio/
zip radio.wgt config.xml radio
cat > ${B}/apps/installAllApps.sh <<-EOF
#!/bin/sh
cd /usr/AGL/apps
for file in \`find . -maxdepth 1 -name '*.wgt'\`; do
/usr/bin/afm-util install \$file
done
sync
#it's Workaround
cyad -s -k MANIFESTS -t allow -c User::App::navigation -u '*' -p 'http://tizen.org/privilege/internal/dbus'
cyad -s -k MANIFESTS -t allow -c User::App::poi -u '*' -p 'http://tizen.org/privilege/internal/dbus'
EOF
}
do_install() {
install -d ${D}/usr/AGL/${PN}
install -d ${D}/usr/AGL/apps
install -m 0644 ${B}/apps/Controls/controls.wgt ${D}/usr/AGL/apps/
install -m 0644 ${B}/apps/Dashboard/dashboard.wgt ${D}/usr/AGL/apps/
install -m 0644 ${B}/apps/Phone/phone.wgt ${D}/usr/AGL/apps/
install -m 0644 ${B}/apps/Radio/radio.wgt ${D}/usr/AGL/apps/
install -m 0755 ${B}/apps/installAllApps.sh ${D}/usr/AGL/apps/
ln -sf ../apps/installAllApps.sh ${D}/usr/AGL/${PN}/installAllApps.sh
install -d ${D}${libdir}/qt5/qml/AGL/Demo/Controls/
install -m 0644 ${S}/imports/AGL/Demo/Controls/qmldir ${D}${libdir}/qt5/qml/AGL/Demo/Controls/
install -m 0644 ${S}/imports/AGL/Demo/Controls/ImageButton.qml ${D}${libdir}/qt5/qml/AGL/Demo/Controls/
install -m 0644 ${S}/imports/AGL/Demo/Controls/ToggleButton.qml ${D}${libdir}/qt5/qml/AGL/Demo/Controls/
install -m 0644 ${S}/imports/AGL/Demo/Controls/Key.qml ${D}${libdir}/qt5/qml/AGL/Demo/Controls/
install -m 0644 ${S}/imports/AGL/Demo/Controls/AbstractKeyboard.qml ${D}${libdir}/qt5/qml/AGL/Demo/Controls/
install -m 0644 ${S}/imports/AGL/Demo/Controls/Symbols.qml ${D}${libdir}/qt5/qml/AGL/Demo/Controls/
install -m 0644 ${S}/imports/AGL/Demo/Controls/Alphabet.qml ${D}${libdir}/qt5/qml/AGL/Demo/Controls/
install -m 0644 ${S}/imports/AGL/Demo/Controls/Keyboard.qml ${D}${libdir}/qt5/qml/AGL/Demo/Controls/
install -d ${D}${libdir}/qt5/qml/AGL/Demo/Controls/images/
install -m 0644 ${S}/imports/AGL/Demo/Controls/images/Keyboard_Back.svg ${D}${libdir}/qt5/qml/AGL/Demo/Controls/images/
install -m 0644 ${S}/imports/AGL/Demo/Controls/images/Keyboard_Shift.svg ${D}${libdir}/qt5/qml/AGL/Demo/Controls/images/
install -m 0644 ${S}/imports/AGL/Demo/Controls/images/Keyboard_Space.svg ${D}${libdir}/qt5/qml/AGL/Demo/Controls/images/
install -m 0644 ${S}/imports/AGL/Demo/Controls/images/Keyboard_Arrow.svg ${D}${libdir}/qt5/qml/AGL/Demo/Controls/images/
install -d ${D}${libdir}/qt5/qml/QtQuick/Controls.2/AGL
install -m 0644 ${S}/imports/qtquickcontrols2aglstyle/*.qml ${D}${libdir}/qt5/qml/QtQuick/Controls.2/AGL
install -d ${D}${libdir}/qt5/qml/QtQuick/Controls.2/AGL/images/
install -m 0644 ${S}/imports/qtquickcontrols2aglstyle/images/* ${D}${libdir}/qt5/qml/QtQuick/Controls.2/AGL/images/
}
# plain copy in own folder for now
#do_install() {
# mkdir -p ${D}/usr/AGL/CES2017/
# cp -rf ./* ${D}/usr/AGL/CES2017/
#}
FILES_${PN} += "/usr/AGL/ \
/usr/AGL/apps/* \
/usr/AGL/${PN}/* \
/usr/lib/qt5/qml/AGL/Demo/Controls/qmldir \
/usr/lib/qt5/qml/AGL/Demo/Controls/ImageButton.qml \
/usr/lib/qt5/qml/AGL/Demo/Controls/ToggleButton.qml \
/usr/lib/qt5/qml/AGL/Demo/Controls/Key.qml \
/usr/lib/qt5/qml/AGL/Demo/Controls/AbstractKeyboard.qml \
/usr/lib/qt5/qml/AGL/Demo/Controls/Symbols.qml \
/usr/lib/qt5/qml/AGL/Demo/Controls/Alphabet.qml \
/usr/lib/qt5/qml/AGL/Demo/Controls/Keyboard.qml \
/usr/lib/qt5/qml/AGL/Demo/Controls/images/Keyboard_Back.svg \
/usr/lib/qt5/qml/AGL/Demo/Controls/images/Keyboard_Shift.svg \
/usr/lib/qt5/qml/AGL/Demo/Controls/images/Keyboard_Space.svg \
/usr/lib/qt5/qml/AGL/Demo/Controls/images/Keyboard_Arrow.svg \
/usr/lib/qt5/qml/QtQuick/Controls.2/AGL \
/usr/lib/qt5/qml/QtQuick/Controls.2/AGL/images \
"
|