summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/qtcharts.mk23
-rw-r--r--src/qtdatavis3d.mk23
-rw-r--r--src/qtdeclarative-render2d.mk23
-rw-r--r--src/qtgamepad.mk23
-rw-r--r--src/qtpurchasing.mk23
-rw-r--r--src/qtscxml.mk23
-rw-r--r--src/qtserialbus.mk23
-rw-r--r--src/qtvirtualkeyboard.mk23
8 files changed, 184 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
diff --git a/src/qtdatavis3d.mk b/src/qtdatavis3d.mk
new file mode 100644
index 0000000..ed8d77e
--- /dev/null
+++ b/src/qtdatavis3d.mk
@@ -0,0 +1,23 @@
+# This file is part of MXE.
+# See index.html for further information.
+
+PKG := qtdatavis3d
+$(PKG)_IGNORE :=
+$(PKG)_VERSION = $(qtbase_VERSION)
+$(PKG)_CHECKSUM := 9a5d7a383dce211a904bca3b8b6054bb448148ca07cede2bd46d255de016e8a2
+$(PKG)_SUBDIR = $(subst qtbase,qtdatavis3d,$(qtbase_SUBDIR))
+$(PKG)_FILE = $(subst qtbase,qtdatavis3d,$(qtbase_FILE))
+$(PKG)_URL = $(subst qtbase,qtdatavis3d,$(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
diff --git a/src/qtdeclarative-render2d.mk b/src/qtdeclarative-render2d.mk
new file mode 100644
index 0000000..0469cc0
--- /dev/null
+++ b/src/qtdeclarative-render2d.mk
@@ -0,0 +1,23 @@
+# This file is part of MXE.
+# See index.html for further information.
+
+PKG := qtdeclarative-render2d
+$(PKG)_IGNORE :=
+$(PKG)_VERSION = $(qtbase_VERSION)
+$(PKG)_CHECKSUM := 0613298f653b147bb3c26d0f0ee0bb95fec74894d07575f1953e8a7fe248c8e1
+$(PKG)_SUBDIR = $(subst qtbase,qtdeclarative-render2d,$(qtbase_SUBDIR))
+$(PKG)_FILE = $(subst qtbase,qtdeclarative-render2d,$(qtbase_FILE))
+$(PKG)_URL = $(subst qtbase,qtdeclarative-render2d,$(qtbase_URL))
+$(PKG)_DEPS := gcc qtbase qtdeclarative
+
+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
diff --git a/src/qtgamepad.mk b/src/qtgamepad.mk
new file mode 100644
index 0000000..892f408
--- /dev/null
+++ b/src/qtgamepad.mk
@@ -0,0 +1,23 @@
+# This file is part of MXE.
+# See index.html for further information.
+
+PKG := qtgamepad
+$(PKG)_IGNORE :=
+$(PKG)_VERSION = $(qtbase_VERSION)
+$(PKG)_CHECKSUM := 5898f7bc002d0ac65b698043f24f3e2ff2bb7ca7735f43b74e37056c2db5663c
+$(PKG)_SUBDIR = $(subst qtbase,qtgamepad,$(qtbase_SUBDIR))
+$(PKG)_FILE = $(subst qtbase,qtgamepad,$(qtbase_FILE))
+$(PKG)_URL = $(subst qtbase,qtgamepad,$(qtbase_URL))
+$(PKG)_DEPS := gcc qtbase qtdeclarative
+
+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
diff --git a/src/qtpurchasing.mk b/src/qtpurchasing.mk
new file mode 100644
index 0000000..62d5850
--- /dev/null
+++ b/src/qtpurchasing.mk
@@ -0,0 +1,23 @@
+# This file is part of MXE.
+# See index.html for further information.
+
+PKG := qtpurchasing
+$(PKG)_IGNORE :=
+$(PKG)_VERSION = $(qtbase_VERSION)
+$(PKG)_CHECKSUM := 7e514a3cb98addd0b1344a69c494afe4546d854d43340760aed00ad0062664b5
+$(PKG)_SUBDIR = $(subst qtbase,qtpurchasing,$(qtbase_SUBDIR))
+$(PKG)_FILE = $(subst qtbase,qtpurchasing,$(qtbase_FILE))
+$(PKG)_URL = $(subst qtbase,qtpurchasing,$(qtbase_URL))
+$(PKG)_DEPS := gcc qtbase qtdeclarative
+
+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
diff --git a/src/qtscxml.mk b/src/qtscxml.mk
new file mode 100644
index 0000000..ad0f6b1
--- /dev/null
+++ b/src/qtscxml.mk
@@ -0,0 +1,23 @@
+# This file is part of MXE.
+# See index.html for further information.
+
+PKG := qtscxml
+$(PKG)_IGNORE :=
+$(PKG)_VERSION = $(qtbase_VERSION)
+$(PKG)_CHECKSUM := 370b13d76c9a2ddf05336e797edf7f54d41db6063e3b921e0825dd6dd26c51f1
+$(PKG)_SUBDIR = $(subst qtbase,qtscxml,$(qtbase_SUBDIR))
+$(PKG)_FILE = $(subst qtbase,qtscxml,$(qtbase_FILE))
+$(PKG)_URL = $(subst qtbase,qtscxml,$(qtbase_URL))
+$(PKG)_DEPS := gcc qtbase qtdeclarative
+
+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
diff --git a/src/qtserialbus.mk b/src/qtserialbus.mk
new file mode 100644
index 0000000..602d0b9
--- /dev/null
+++ b/src/qtserialbus.mk
@@ -0,0 +1,23 @@
+# This file is part of MXE.
+# See index.html for further information.
+
+PKG := qtserialbus
+$(PKG)_IGNORE :=
+$(PKG)_VERSION = $(qtbase_VERSION)
+$(PKG)_CHECKSUM := 2c437ace393e9dcf170990b519cec59c5cbcfc3c830e46116abb52549dc15d38
+$(PKG)_SUBDIR = $(subst qtbase,qtserialbus,$(qtbase_SUBDIR))
+$(PKG)_FILE = $(subst qtbase,qtserialbus,$(qtbase_FILE))
+$(PKG)_URL = $(subst qtbase,qtserialbus,$(qtbase_URL))
+$(PKG)_DEPS := gcc qtbase qtserialport
+
+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
diff --git a/src/qtvirtualkeyboard.mk b/src/qtvirtualkeyboard.mk
new file mode 100644
index 0000000..dbb0289
--- /dev/null
+++ b/src/qtvirtualkeyboard.mk
@@ -0,0 +1,23 @@
+# This file is part of MXE.
+# See index.html for further information.
+
+PKG := qtvirtualkeyboard
+$(PKG)_IGNORE :=
+$(PKG)_VERSION = $(qtbase_VERSION)
+$(PKG)_CHECKSUM := df433de68e23b173b87b422038bc9f3e53349035c11a2b2e495122274664ff2f
+$(PKG)_SUBDIR = $(subst qtbase,qtvirtualkeyboard,$(qtbase_SUBDIR))
+$(PKG)_FILE = $(subst qtbase,qtvirtualkeyboard,$(qtbase_FILE))
+$(PKG)_URL = $(subst qtbase,qtvirtualkeyboard,$(qtbase_URL))
+$(PKG)_DEPS := gcc qtbase qtdeclarative qtmultimedia qtquickcontrols qtsvg
+
+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