diff options
Diffstat (limited to 'src/qtjsbackend.mk')
-rw-r--r-- | src/qtjsbackend.mk | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/src/qtjsbackend.mk b/src/qtjsbackend.mk new file mode 100644 index 0000000..d63fe76 --- /dev/null +++ b/src/qtjsbackend.mk @@ -0,0 +1,20 @@ +# This file is part of MXE. +# See index.html for further information. + +PKG := qtjsbackend +$(PKG)_IGNORE := +$(PKG)_CHECKSUM := 9f499e144080318fb6c40501b854db909f8ba3d2 +$(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 qtjsbackend.' >&2; +endef + +define $(PKG)_BUILD + cd '$(1)' && '$(PREFIX)/$(TARGET)/qt5/bin/qmake' + $(MAKE) -C '$(1)' -j '$(JOBS)' + $(MAKE) -C '$(1)' -j 1 install +endef |