summaryrefslogtreecommitdiffstats
path: root/src/qtcharts.mk
diff options
context:
space:
mode:
authorMark Brand <mabrand@mabrand.nl>2016-06-18 09:31:01 (GMT)
committerMark Brand <mabrand@mabrand.nl>2016-06-18 09:32:40 (GMT)
commitd62f9121c21e2f53d45da95b940df582de1135f8 (patch)
tree1ce10729b36de56b62c4429284bb63b12674dc8c /src/qtcharts.mk
parente64fb04b50a9bc6bfb1e8465d8fafe09c8af4c32 (diff)
downloadmxe-d62f9121c21e2f53d45da95b940df582de1135f8.zip
mxe-d62f9121c21e2f53d45da95b940df582de1135f8.tar.gz
mxe-d62f9121c21e2f53d45da95b940df582de1135f8.tar.bz2
add new qt5 modules
qtcharts qtdatavis3d qtdeclarative-render2d qtgamepad qtpurchasing qtscxml qtserialbus qtvirtualkeyboard https://wiki.qt.io/New_Features_in_Qt_5.7
Diffstat (limited to 'src/qtcharts.mk')
-rw-r--r--src/qtcharts.mk23
1 files changed, 23 insertions, 0 deletions
diff --git a/src/qtcharts.mk b/src/qtcharts.mk
new file mode 100644
index 0000000..c80d1e7
--- /dev/null
+++ b/src/qtcharts.mk
@@ -0,0 +1,23 @@
+# This file is part of MXE.
+# See index.html for further information.
+
+PKG := qtcharts
+$(PKG)_IGNORE :=
+$(PKG)_VERSION = $(qtbase_VERSION)
+$(PKG)_CHECKSUM := 2bc8a87375c7aeebde2e4cd2408c92c91ec3fed9e6e8b5fde789131b532d5243
+$(PKG)_SUBDIR = $(subst qtbase,qtcharts,$(qtbase_SUBDIR))
+$(PKG)_FILE = $(subst qtbase,qtcharts,$(qtbase_FILE))
+$(PKG)_URL = $(subst qtbase,qtcharts,$(qtbase_URL))
+$(PKG)_DEPS := gcc qtbase qtdeclarative qtmultimedia
+
+define $(PKG)_UPDATE
+ echo $(qtbase_VERSION)
+endef
+
+define $(PKG)_BUILD
+ # invoke qmake with removed debug options as a workaround for
+ # https://bugreports.qt-project.org/browse/QTBUG-30898
+ cd '$(1)' && '$(PREFIX)/$(TARGET)/qt5/bin/qmake' CONFIG-='debug debug_and_release'
+ $(MAKE) -C '$(1)' -j '$(JOBS)'
+ $(MAKE) -C '$(1)' -j 1 install
+endef