summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTony Theodore <tonyt@logyst.com>2013-06-01 05:32:53 (GMT)
committerTony Theodore <tonyt@logyst.com>2013-06-01 05:32:53 (GMT)
commit8519287ff16516b2925c04175488fde0b444e395 (patch)
tree43dbaeecb77f8a2e2c2ae6c522cd9ca35f24af90
parentb93e1324314f39f9d5fc6d35b2dd9900946c77c9 (diff)
downloadmxe-8519287ff16516b2925c04175488fde0b444e395.zip
mxe-8519287ff16516b2925c04175488fde0b444e395.tar.gz
mxe-8519287ff16516b2925c04175488fde0b444e395.tar.bz2
add qt5 convenience target package
-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 f58cf91..7441ff3 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