From fb586f07d7d5e65d9f176c63fc2c2234316ffa18 Mon Sep 17 00:00:00 2001 From: Mark Brand Date: Sat, 6 Dec 2014 01:35:22 +0100 Subject: new qt5 modules: qtwebchannel and qtwebengine --- index.html | 8 ++++++++ src/qtwebchannel.mk | 22 ++++++++++++++++++++++ src/qtwebengine.mk | 22 ++++++++++++++++++++++ 3 files changed, 52 insertions(+) create mode 100644 src/qtwebchannel.mk create mode 100644 src/qtwebengine.mk diff --git a/index.html b/index.html index cbfb462..089113b 100644 --- a/index.html +++ b/index.html @@ -2254,6 +2254,14 @@ local-pkg-list: $(LOCAL_PKG_LIST) Qt + qtwebchannel + Qt + + + qtwebengine + Qt + + qtwebkit Qt diff --git a/src/qtwebchannel.mk b/src/qtwebchannel.mk new file mode 100644 index 0000000..d7f6344 --- /dev/null +++ b/src/qtwebchannel.mk @@ -0,0 +1,22 @@ +# This file is part of MXE. +# See index.html for further information. + +PKG := qtwebchannel +$(PKG)_IGNORE := +$(PKG)_VERSION = $(qtbase_VERSION) +$(PKG)_CHECKSUM := fc40a24c4aa5df2d0719d238e176b55cf33b86ae +$(PKG)_SUBDIR = $(subst qtbase,qtwebchannel,$(qtbase_SUBDIR)) +$(PKG)_FILE = $(subst qtbase,qtwebchannel,$(qtbase_FILE)) +$(PKG)_URL = $(subst qtbase,qtwebchannel,$(qtbase_URL)) +$(PKG)_DEPS := gcc qtbase qtdeclarative qtwebsockets + +define $(PKG)_UPDATE + echo $(qtbase_VERSION) +endef + +define $(PKG)_BUILD + cd '$(1)' && '$(PREFIX)/$(TARGET)/qt5/bin/qmake' + $(MAKE) -C '$(1)' -j '$(JOBS)' + $(MAKE) -C '$(1)' -j 1 install +endef + diff --git a/src/qtwebengine.mk b/src/qtwebengine.mk new file mode 100644 index 0000000..bca1190 --- /dev/null +++ b/src/qtwebengine.mk @@ -0,0 +1,22 @@ +# This file is part of MXE. +# See index.html for further information. + +PKG := qtwebengine +$(PKG)_IGNORE := +$(PKG)_VERSION = $(qtbase_VERSION) +$(PKG)_CHECKSUM := 6071cf8c06a1866689c7799c60e0ef8e09dcf70f +$(PKG)_SUBDIR = $(subst qtbase,qtwebengine,$(qtbase_SUBDIR)) +$(PKG)_FILE = $(subst qtbase,qtwebengine,$(qtbase_FILE)) +$(PKG)_URL = $(subst qtbase,qtwebengine,$(qtbase_URL)) +$(PKG)_DEPS := gcc qtbase qtquickcontrols qtwebkit + +define $(PKG)_UPDATE + echo $(qtbase_VERSION) +endef + +define $(PKG)_BUILD + cd '$(1)' && '$(PREFIX)/$(TARGET)/qt5/bin/qmake' + $(MAKE) -C '$(1)' -j '$(JOBS)' + $(MAKE) -C '$(1)' -j 1 install +endef + -- cgit v0.12