summaryrefslogtreecommitdiffstats
path: root/src/qtifw.mk
diff options
context:
space:
mode:
authorMartin Müllenhaupt <mm+git@netlair.de>2019-08-06 13:16:05 (GMT)
committermabrand <mabrand@mabrand.nl>2019-09-19 10:30:08 (GMT)
commite479e87b0ee79da10bfe278de557cfc6776e518b (patch)
tree0805c6ccbc93338c8d799144fc32904593a67245 /src/qtifw.mk
parentaae03b205f41d61bde9b6203a933bb0c9139b334 (diff)
downloadmxe-e479e87b0ee79da10bfe278de557cfc6776e518b.zip
mxe-e479e87b0ee79da10bfe278de557cfc6776e518b.tar.gz
mxe-e479e87b0ee79da10bfe278de557cfc6776e518b.tar.bz2
package qtifw: update to 3.1.1, build test
Diffstat (limited to 'src/qtifw.mk')
-rw-r--r--src/qtifw.mk13
1 files changed, 8 insertions, 5 deletions
diff --git a/src/qtifw.mk b/src/qtifw.mk
index 1bfb119..e7d9c81 100644
--- a/src/qtifw.mk
+++ b/src/qtifw.mk
@@ -4,11 +4,11 @@ PKG := qtifw
$(PKG)_WEBSITE := https://doc.qt.io/qtinstallerframework/index.html
$(PKG)_DESCR := Qt Installer Framework
$(PKG)_IGNORE :=
-$(PKG)_VERSION := 3.0.4
-$(PKG)_CHECKSUM := a4ecafc37086f96a833463214f873caac977199e64f0b1453aa49bdd6f24f32e
-$(PKG)_SUBDIR = qt-installer-framework-opensource-src-$($(PKG)_VERSION)
-$(PKG)_FILE := $($(PKG)_SUBDIR).zip
-$(PKG)_URL := https://download.qt.io/official_releases/qt-installer-framework/$($(PKG)_VERSION)/$($(PKG)_FILE)
+$(PKG)_VERSION := 3.1.1
+$(PKG)_CHECKSUM := 59b5370aaf521bb1a34a025ac451bb3bbbfa519ee271156aba9d42ee1132d1b1
+# the archive is in fact only a tar file, not a tar.gz
+$(PKG)_FILE := qtifw-$($(PKG)_VERSION).tar
+$(PKG)_URL := https://download.qt.io/official_releases/qt-installer-framework/$($(PKG)_VERSION)/qt-installer-framework-opensource-src-$($(PKG)_VERSION).tar.gz
$(PKG)_TARGETS := $(BUILD) $(MXE_TARGETS)
$(PKG)_DEPS_$(BUILD) := cc qtbase qttools
@@ -28,4 +28,7 @@ define $(PKG)_BUILD_STATIC
cd '$(1)' && '$(PREFIX)/$(TARGET)/qt5/bin/qmake'
$(MAKE) -C '$(1)' -j '$(JOBS)' || $(MAKE) -C '$(1)' -j 1
$(MAKE) -C '$(1)' -j 1 install
+
+ # build the tutorial installer in /tmp, because the binarycreator internal rename will fail if /tmp is not in the same filesystem as mxe
+ cd '$(1)examples/tutorial' && '$(PREFIX)/bin/$(BUILD)-binarycreator' -c config/config.xml -p packages -t $(PREFIX)/$(TARGET)/qt5/bin/installerbase.exe /tmp/test-$(PKG)-tutorialinstaller.exe && mv /tmp/test-$(PKG)-tutorialinstaller.exe $(PREFIX)/$(TARGET)/bin/test-$(PKG)-tutorialinstaller.exe
endef