From 8519287ff16516b2925c04175488fde0b444e395 Mon Sep 17 00:00:00 2001 From: Tony Theodore Date: Sat, 1 Jun 2013 15:32:53 +1000 Subject: [PATCH] add qt5 convenience target package --- index.html | 5 +++++ src/qt5.mk | 17 +++++++++++++++++ 2 files changed, 22 insertions(+) create mode 100644 src/qt5.mk diff --git a/index.html b/index.html index f58cf918..7441ff3d 100644 --- a/index.html +++ b/index.html @@ -1998,6 +1998,11 @@ aptitude -t squeeze-backports install cmake yasm 4.8.5 Qt + + qt5 + 5.1.0-rc1 + Qt5 + qtactiveqt 5.1.0-rc1 diff --git a/src/qt5.mk b/src/qt5.mk new file mode 100644 index 00000000..44bce19f --- /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