summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormabrand <mabrand@mabrand.nl>2013-06-01 07:58:28 (GMT)
committermabrand <mabrand@mabrand.nl>2013-06-01 07:58:28 (GMT)
commit9ec80222c62d57aaee125a6e5b9a65696fe2e72e (patch)
treed23093ecd6c19950d8a712718ef79613a3efb43c
parente6dc9243b2e69985d2eee5d6bf697ac19dd5d0f4 (diff)
parent8519287ff16516b2925c04175488fde0b444e395 (diff)
downloadmxe-9ec80222c62d57aaee125a6e5b9a65696fe2e72e.zip
mxe-9ec80222c62d57aaee125a6e5b9a65696fe2e72e.tar.gz
mxe-9ec80222c62d57aaee125a6e5b9a65696fe2e72e.tar.bz2
Merge pull request #194 from tonytheodore/qt5-wrapper
Add Qt5 convenience target
-rw-r--r--index.html5
-rw-r--r--src/qt5.mk17
2 files changed, 22 insertions, 0 deletions
diff --git a/index.html b/index.html
index 73d21ff..3e7c559 100644
--- a/index.html
+++ b/index.html
@@ -1999,6 +1999,11 @@ aptitude -t squeeze-backports install cmake yasm</pre>
<td id="qt-website"><a href="http://qt-project.org/">Qt</a></td>
</tr>
<tr>
+ <td id="qt5-package">qt5</td>
+ <td id="qt5-version">5.1.0-rc1</td>
+ <td id="qt5-website"><a href="http://qt-project.org/">Qt5</a></td>
+ </tr>
+ <tr>
<td id="qtactiveqt-package">qtactiveqt</td>
<td id="qtactiveqt-version">5.1.0-rc1</td>
<td id="qtactiveqt-website"><a href="http://qt-project.org/">Qt</a></td>
diff --git a/src/qt5.mk b/src/qt5.mk
new file mode 100644
index 0000000..44bce19
--- /dev/null
+++ b/src/qt5.mk
@@ -0,0 +1,17 @@
+# This file is part of MXE.
+# See index.html for further information.
+
+PKG := qt5
+$(PKG)_IGNORE = $(qtbase_IGNORE)
+$(PKG)_CHECKSUM = $(qtbase_CHECKSUM)
+$(PKG)_SUBDIR = $(qtbase_SUBDIR)
+$(PKG)_FILE = $(qtbase_FILE)
+$(PKG)_URL = $(qtbase_URL)
+$(PKG)_DEPS := $(patsubst $(TOP_DIR)/src/%.mk,%,\
+ $(shell grep -l 'DEPS.*qtbase' \
+ $(TOP_DIR)/src/qt*.mk \
+ --exclude '$(TOP_DIR)/src/qt5.mk'))
+
+define $(PKG)_UPDATE
+ echo $(qtbase_VERSION)
+endef