blob: 2c21d1b56abd85a280ba4a579345bed592fb9d05 (
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
|
##############################################################################
##
## Copyright (C) 2016 The Qt Company Ltd.
## Contact: http://www.qt.io/licensing/
##
## This file is part of the Boot to Qt meta layer.
##
## $QT_BEGIN_LICENSE:COMM$
##
## Commercial License Usage
## Licensees holding valid commercial Qt licenses may use this file in
## accordance with the commercial license agreement provided with the
## Software or, alternatively, in accordance with the terms contained in
## a written agreement between you and The Qt Company. For licensing terms
## and conditions see http://www.qt.io/terms-conditions. For further
## information use the contact form at http://www.qt.io/contact-us.
##
## $QT_END_LICENSE$
##
##############################################################################
DESCRIPTION = "Qt component for application lifecycle management"
LICENSE = "GPLv3"
LIC_FILES_CHKSUM = "file://LICENSE.GPLv3;md5=311507adb75495acc0b61d69109485ce"
inherit qmake5 sdk-sources
SRC_URI = " \
git://codereview.qt-project.org/qt/qtapplicationmanager;branch=${BRANCH};protocol=ssh;sdk-uri=5.6/Src/qtapplicationmanager \
"
SRCREV = "b7578378b578788c2ae9c60708a2908d3b090c16"
BRANCH = "master"
DEPENDS = "qtbase qtdeclarative libyaml libarchive \
${@base_contains("DISTRO_FEATURES", "wayland", "qtwayland", "", d)}"
S = "${WORKDIR}/git"
EXTRA_QMAKEVARS_PRE += "\
-config force-singleprocess \
-config enable-dummydata \
-config enable-ivi-logging \
-config install-prefix=/usr \
-config systemd-workaround \
"
do_install_append() {
install -m 0755 -d ${D}/opt/am/
install -m 0644 ${S}/template-opt/am/config.yaml ${D}/opt/am/
}
FILES_${PN} += "\
/opt/am \
${libdir}/appman \
${datadir}/dbus-1"
FILES_${PN}-dbg += "${libdir}/appman/.debug"
FILES_${PN}-dev += "${OE_QMAKE_PATH_LIBS}/*.prl"
|