Files
video/frameworks/qt5graphicaleffects/Makefile
Mirko Vogt 1f37050afa qt5: update to 5.15.0 (LTS release)
This also purges already back then (v5.9) legacy projects, such as Qt
Quick 1 / QML 1.

We also focus on software rendering only for now, postponing dealing
with messy vendor specific GL(ES) APIs, quirks and proprietary / binary
blobs. Implies certain features and packages being unavailable for the
moment.
2020-06-07 23:09:24 +00:00

51 lines
1.4 KiB
Makefile

#
# Copyright (C) 2020 OpenWrt
# Author: Mirko Vogt <mirko-openwrt@nanl.de>
# This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information.
#
include $(TOPDIR)/rules.mk
PKG_NAME:=qt5graphicaleffects
PKG_VERSION:=5.15.0
PKG_RELEASE:=1
PKG_HASH:=0d2ea4bc73b9df13a4b739dcbc1e3c7b298c7e682f7f9252b232e3bde7b63eda
PKG_SYS_NAME:=qtgraphicaleffects-everywhere-src-$(PKG_VERSION)
PKG_SOURCE:=$(PKG_SYS_NAME).tar.xz
PKG_SOURCE_URL:=https://download.qt.io/official_releases/qt/$(basename $(PKG_VERSION))/$(PKG_VERSION)/submodules
PKG_BUILD_DIR=$(BUILD_DIR)/$(PKG_SYS_NAME)
PKG_BUILD_PARALLEL:=1
PKG_BUILD_DEPENDS:=qt5base
PKG_INSTALL:=1
include $(INCLUDE_DIR)/package.mk
include $(INCLUDE_DIR)/nls.mk
-include $(STAGING_DIR)/host/mk/qmake.mk
define Package/qt5graphicaleffects
SECTION:=video-frameworks
CATEGORY:=Video
SUBMENU:=Frameworks and Toolkits
TITLE:=qt5graphicaleffects
URL:=http://qt.io
MAINTAINER:=Mirko Vogt <mirko-openwrt@nanl.de>
DEPENDS:=+qt5quick2-quick @BROKEN # depends on GL support, but currently we only support software rendering
endef
define Build/InstallDev
endef
define Package/qt5graphicaleffects/install
$(INSTALL_DIR) \
$(1)/usr/lib/qt5/qml/QtGraphicalEffects
$(CP) \
$(PKG_INSTALL_DIR)/usr/lib/qt5/qml/QtGraphicalEffects/* \
$(1)/usr/lib/qt5/qml/QtGraphicalEffects/
endef
$(eval $(call BuildPackage,qt5graphicaleffects))