summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristian Leichsenring <christian@marginsoftware.de>2018-05-03 11:45:09 (GMT)
committerChristian Leichsenring <christian@marginsoftware.de>2018-05-03 11:45:09 (GMT)
commit52375de1af237f1fa0ff0253b28560d21e3c7a0f (patch)
tree8b516751b4c80b07d48c55188d0f6778e8f5ca37
parent12710eeba4639e65f31290ba60bc4e58b0f22a43 (diff)
downloadmxe-52375de1af237f1fa0ff0253b28560d21e3c7a0f.zip
mxe-52375de1af237f1fa0ff0253b28560d21e3c7a0f.tar.gz
mxe-52375de1af237f1fa0ff0253b28560d21e3c7a0f.tar.bz2
added package for Qt networkauth module
-rw-r--r--src/qtnetworkauth.mk22
1 files changed, 22 insertions, 0 deletions
diff --git a/src/qtnetworkauth.mk b/src/qtnetworkauth.mk
new file mode 100644
index 0000000..9127e55
--- /dev/null
+++ b/src/qtnetworkauth.mk
@@ -0,0 +1,22 @@
+# This file is part of MXE. See LICENSE.md for licensing information.
+
+PKG := qtnetworkauth
+$(PKG)_WEBSITE := https://www.qt.io/
+$(PKG)_DESCR := Qt
+$(PKG)_IGNORE :=
+$(PKG)_VERSION = $(qtbase_VERSION)
+$(PKG)_CHECKSUM := 97231c319bd623d81eebaa1b5cdba4064bc4e69332c695a15cf8792b54b5dcdc
+$(PKG)_SUBDIR = $(subst qtbase,qtnetworkauth,$(qtbase_SUBDIR))
+$(PKG)_FILE = $(subst qtbase,qtnetworkauth,$(qtbase_FILE))
+$(PKG)_URL = $(subst qtbase,qtnetworkauth,$(qtbase_URL))
+$(PKG)_DEPS := cc qtbase
+
+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