blob: 7736d9b606fc201664016050c40cd27968c37fc3 (
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
|
#############################################################################
##
## Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies).
##
## This file is part of the Qt Enterprise Embedded Scripts of the Qt
## framework.
##
## $QT_BEGIN_LICENSE$
## Commercial License Usage Only
## Licensees holding valid commercial Qt license agreements with Digia
## with an appropriate addendum covering the Qt Enterprise Embedded Scripts,
## may use this file in accordance with the terms contained in said license
## agreement.
##
## For further information use the contact form at
## http://www.qt.io/contact-us.
##
##
## $QT_END_LICENSE$
##
#############################################################################
DESCRIPTION = "Qt Quick Enterprise Controls"
LICENSE = "QtEnterprise"
LIC_FILES_CHKSUM = "file://src/controls/Styles/Base/DialStyle.qml;md5=caa6d9db463140360114e567721eb580;beginline=1;endline=17"
inherit qt5-module
SRC_URI = " \
git://qt-gerrit.it.local/QtRD-15810/qtquick-extras.git;branch=${QT_BRANCH};protocol=ssh \
"
SRCREV = "ed6f7049e06717113d5f500595c5a1f2074fb13d"
QT_BRANCH = "master"
S = "${WORKDIR}/git"
PACKAGES += "${PN}-fonts"
RRECOMMENDS_${PN} = "${PN}-fonts"
DEPENDS += "qtbase qtdeclarative qtgraphicaleffects"
FILES_${PN}-fonts += " \
/usr/lib/qt5/qml/QtQuick/Controls/Styles/Flat/fonts \
"
FILES_${PN} += " \
/opt/dashboard/bin/dashboard \
/opt/gallery/bin/gallery \
"
FILES_${PN}-dbg += " \
/opt/dashboard/bin/.debug \
/opt/gallery/bin/.debug \
"
FILES_${PN}-qmlplugins += " \
${OE_QMAKE_PATH_QML}/QtQuick/Enterprise/Controls/Styles/*/*.qml \
${OE_QMAKE_PATH_QML}/QtQuick/Enterprise/Controls/designer/* \
${OE_QMAKE_PATH_QML}/QtQuick/Enterprise/Controls/Styles/*/*/* \
"
FILES_${PN}-examples += " \
/opt/flat/bin/flat \
"
FILES_${PN}-examples-dbg += " \
/opt/flat/bin/.debug \
"
|