diff options
author | Otavio Salvador <otavio@ossystems.com.br> | 2014-02-07 11:38:17 -0200 |
---|---|---|
committer | Otavio Salvador <otavio@ossystems.com.br> | 2014-02-11 15:34:46 -0200 |
commit | 3cc5613d226d95f5f4e802856f507efaf44cb968 (patch) | |
tree | acdd6064bdceef7c74fb155ad38ca37c0d22985f /recipes-qt/packagegroups | |
parent | d768d975282b8a230314880ab6acd334440a6214 (diff) | |
download | meta-qt5-3cc5613d226d95f5f4e802856f507efaf44cb968.tar.gz |
packagegroup-qt5-toolchain-target: Add packagegroup
Allow easy inclusion of target packages for the Qt5 SDK or external
toolchain.
The list of the target package is based on the Arago Project, which
has been contribute by Denys Dmytriyenko <denys@ti.com>.
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
Diffstat (limited to 'recipes-qt/packagegroups')
-rw-r--r-- | recipes-qt/packagegroups/packagegroup-qt5-toolchain-target.bb | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/recipes-qt/packagegroups/packagegroup-qt5-toolchain-target.bb b/recipes-qt/packagegroups/packagegroup-qt5-toolchain-target.bb new file mode 100644 index 00000000..997df189 --- /dev/null +++ b/recipes-qt/packagegroups/packagegroup-qt5-toolchain-target.bb | |||
@@ -0,0 +1,40 @@ | |||
1 | # Copyright (C) 2014 O.S. Systems Software LTDA. | ||
2 | |||
3 | DESCRIPTION = "Target packages for Qt5 SDK" | ||
4 | LICENSE = "MIT" | ||
5 | |||
6 | inherit packagegroup | ||
7 | |||
8 | PACKAGEGROUP_DISABLE_COMPLEMENTARY = "1" | ||
9 | |||
10 | # Requires meta-ruby to work | ||
11 | USE_RUBY = " \ | ||
12 | qtwebkit-mkspecs \ | ||
13 | qtwebkit-dev \ | ||
14 | " | ||
15 | |||
16 | RDEPENDS_${PN} += " \ | ||
17 | packagegroup-core-standalone-sdk-target \ | ||
18 | libsqlite3-dev \ | ||
19 | qtbase-mkspecs \ | ||
20 | qtscript-mkspecs \ | ||
21 | qtxmlpatterns-mkspecs \ | ||
22 | qtdeclarative-mkspecs \ | ||
23 | qtsensors-mkspecs \ | ||
24 | qt3d-mkspecs \ | ||
25 | qtlocation-mkspecs \ | ||
26 | qtsvg-mkspecs \ | ||
27 | qtbase-dev \ | ||
28 | qtdeclarative-dev \ | ||
29 | qtscript-dev \ | ||
30 | qt3d-dev \ | ||
31 | qtlocation-dev \ | ||
32 | qtsensors-dev \ | ||
33 | qtsvg-dev \ | ||
34 | qtxmlpatterns-dev \ | ||
35 | qtdeclarative-dev \ | ||
36 | qtdeclarative-plugins \ | ||
37 | qtdeclarative-qmlplugins \ | ||
38 | qtgraphicaleffects-dev \ | ||
39 | ${@base_contains('BBFILE_COLLECTIONS', 'ruby-layer', '${USE_RUBY}', '', d)} \ | ||
40 | " | ||