diff options
author | Mark Brand <mabrand@mabrand.nl> | 2014-05-23 10:26:51 (GMT) |
---|---|---|
committer | Mark Brand <mabrand@mabrand.nl> | 2014-05-23 10:26:51 (GMT) |
commit | fda0f6a25eaec222440ad901087d8039ebf02b19 (patch) | |
tree | 598931f507cdd8b8a2f9e46d9f50b424cdddf056 /src/qtsystems.mk | |
parent | 367de15c5d15690c8d49e769a7a07bd5e9ece0d8 (diff) | |
download | mxe-fda0f6a25eaec222440ad901087d8039ebf02b19.zip mxe-fda0f6a25eaec222440ad901087d8039ebf02b19.tar.gz mxe-fda0f6a25eaec222440ad901087d8039ebf02b19.tar.bz2 |
new package qtsystems
Diffstat (limited to 'src/qtsystems.mk')
-rw-r--r-- | src/qtsystems.mk | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/src/qtsystems.mk b/src/qtsystems.mk new file mode 100644 index 0000000..4fd3b3b --- /dev/null +++ b/src/qtsystems.mk @@ -0,0 +1,22 @@ +# This file is part of MXE. +# See index.html for further information. +PKG := qtsystems +$(PKG)_IGNORE := +$(PKG)_VERSION := 3b3b759c6ccd65eb6251fca68e5618c5ed8b6dd5 +$(PKG)_CHECKSUM := 1b606f7f4c884afaa6b33c46b4fc19d94b07cd90 +$(PKG)_SUBDIR := qt-$(PKG) +$(PKG)_FILE := $($(PKG)_VERSION).tar.gz +$(PKG)_URL := https://qt.gitorious.org/qt/qtsystems/archive/$($(PKG)_FILE) +$(PKG)_DEPS := gcc qtbase qtdeclarative qtxmlpatterns + +define $(PKG)_UPDATE + echo 'Warning: Updates are temporarily disabled for package qtsystems.' >&2; + echo $(qtsystems_VERSION) +endef + +define $(PKG)_BUILD + cd '$(1)' && '$(PREFIX)/$(TARGET)/qt5/bin/syncqt.pl' -version $(qtbase_VERSION) + cd '$(1)' && '$(PREFIX)/$(TARGET)/qt5/bin/qmake' + $(MAKE) -C '$(1)' -j '$(JOBS)' + $(MAKE) -C '$(1)' -j 1 install +endef |