diff options
author | Mark Brand <mabrand@mabrand.nl> | 2012-12-19 22:53:14 (GMT) |
---|---|---|
committer | Mark Brand <mabrand@mabrand.nl> | 2012-12-20 07:52:43 (GMT) |
commit | c0ab4fe418b73d56cb3483dbcc1fa7ddef0d52fe (patch) | |
tree | 670c051f12d90bc47c51f20aa2ce7c9559640395 /src/qtsvg.mk | |
parent | 19b1afc07f6a199d45076c18d7a16e99d159e1ae (diff) | |
download | mxe-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/qtsvg.mk')
-rw-r--r-- | src/qtsvg.mk | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/src/qtsvg.mk b/src/qtsvg.mk new file mode 100644 index 0000000..4ea00bf --- /dev/null +++ b/src/qtsvg.mk @@ -0,0 +1,20 @@ +# This file is part of MXE. +# See index.html for further information. + +PKG := qtsvg +$(PKG)_IGNORE := +$(PKG)_CHECKSUM := 7c5ae70fa90e4e527741a585e83a31fa2948a971 +$(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 qtsvg.' >&2; +endef + +define $(PKG)_BUILD + cd '$(1)' && '$(PREFIX)/$(TARGET)/qt5/bin/qmake' + $(MAKE) -C '$(1)' -j '$(JOBS)' + $(MAKE) -C '$(1)' -j 1 install +endef |