summaryrefslogtreecommitdiffstats
path: root/src/qtactiveqt.mk
diff options
context:
space:
mode:
authorMark Brand <mabrand@mabrand.nl>2012-12-19 22:53:14 (GMT)
committerMark Brand <mabrand@mabrand.nl>2012-12-20 07:52:43 (GMT)
commitc0ab4fe418b73d56cb3483dbcc1fa7ddef0d52fe (patch)
tree670c051f12d90bc47c51f20aa2ce7c9559640395 /src/qtactiveqt.mk
parent19b1afc07f6a199d45076c18d7a16e99d159e1ae (diff)
downloadmxe-c0ab4fe418b73d56cb3483dbcc1fa7ddef0d52fe.zip
mxe-c0ab4fe418b73d56cb3483dbcc1fa7ddef0d52fe.tar.gz
mxe-c0ab4fe418b73d56cb3483dbcc1fa7ddef0d52fe.tar.bz2
package qt5: replace monolothic package with module packages
Qt 5 is designed to be modular. The big monolothic tarball is actually deprecated.
Diffstat (limited to 'src/qtactiveqt.mk')
-rw-r--r--src/qtactiveqt.mk20
1 files changed, 20 insertions, 0 deletions
diff --git a/src/qtactiveqt.mk b/src/qtactiveqt.mk
new file mode 100644
index 0000000..530f847
--- /dev/null
+++ b/src/qtactiveqt.mk
@@ -0,0 +1,20 @@
+# This file is part of MXE.
+# See index.html for further information.
+
+PKG := qtactiveqt
+$(PKG)_IGNORE :=
+$(PKG)_CHECKSUM := 5f06d2267da6871bdf458d16fd99fcdc2680f1a2
+$(PKG)_SUBDIR := $(PKG)-opensource-src-$($(PKG)_VERSION)
+$(PKG)_FILE := $(PKG)-opensource-src-$($(PKG)_VERSION).tar.xz
+$(PKG)_URL := http://releases.qt-project.org/qt5/$($(PKG)_VERSION)/submodules_tar/$($(PKG)_FILE)
+$(PKG)_DEPS := gcc qtbase
+
+define $(PKG)_UPDATE
+ echo 'Warning: Updates are temporarily disabled for package qtactiveqt.' >&2;
+endef
+
+define $(PKG)_BUILD
+ cd '$(1)' && '$(PREFIX)/$(TARGET)/qt5/bin/qmake'
+ $(MAKE) -C '$(1)' -j '$(JOBS)'
+ $(MAKE) -C '$(1)' -j 1 install
+endef