bump to release (5.8.0) and adjust/change to sha256 hashes
[feed/video.git] / frameworks / qt5graphicaleffects / Makefile
1 #
2 # Copyright (C) 2016 OpenWrt
3 # Author: Mirko Vogt <mirko@openwrt.org>
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7
8 include $(TOPDIR)/rules.mk
9
10 PKG_NAME:=qt5graphicaleffects
11 PKG_VERSION:=5.8.0
12 PKG_RELEASE:=1
13 PKG_HASH:=5f2a9b50530ac83d7c2b2ce73fbdf03ac61f83a9521e9d4b796fa17a969dd919
14
15 PKG_SYS_NAME:=qtgraphicaleffects-opensource-src-$(PKG_VERSION)
16 PKG_SOURCE:=$(PKG_SYS_NAME).tar.xz
17 PKG_SOURCE_URL:=http://download.qt-project.org/official_releases/qt/$(basename $(PKG_VERSION))/$(PKG_VERSION)/submodules
18
19 PKG_BUILD_DIR=$(BUILD_DIR)/$(PKG_SYS_NAME)
20 PKG_BUILD_PARALLEL:=1
21 PKG_INSTALL:=1
22
23 include $(INCLUDE_DIR)/package.mk
24 include $(INCLUDE_DIR)/nls.mk
25 -include $(STAGING_DIR)/host/mk/qmake.mk
26
27 define Package/qt5graphicaleffects
28 SECTION:=video-frameworks
29 CATEGORY:=Video
30 SUBMENU:=Frameworks and Toolkits
31 TITLE:=qt5graphicaleffects
32 URL:=http://qt.io
33 MAINTAINER:=Mirko Vogt <mirko@openwrt.org>
34 DEPENDS:=+qt5quick2-quick
35 endef
36
37 define Build/Configure
38 $(call Build/Configure/Default,qtgraphicaleffects)
39 endef
40
41 define Build/InstallDev
42 endef
43
44 define Package/qt5graphicaleffects/install
45 $(INSTALL_DIR) \
46 $(1)/usr/lib/qt5/qml/QtGraphicalEffects
47
48 $(CP) \
49 $(PKG_INSTALL_DIR)/usr/lib/qt5/qml/QtGraphicalEffects/* \
50 $(1)/usr/lib/qt5/qml/QtGraphicalEffects/
51 endef
52
53 $(eval $(call BuildPackage,qt5graphicaleffects))