Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH v1] package/qt5lottie: new package
@ 2020-10-12 21:16 Peter Seiderer
  2020-10-14 21:33 ` Thomas Petazzoni
  0 siblings, 1 reply; 2+ messages in thread
From: Peter Seiderer @ 2020-10-12 21:16 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Peter Seiderer <ps.report@gmx.net>
---
 package/qt5/Config.in                |  1 +
 package/qt5/qt5lottie/Config.in      | 12 ++++++++++++
 package/qt5/qt5lottie/qt5lottie.hash |  6 ++++++
 package/qt5/qt5lottie/qt5lottie.mk   | 16 ++++++++++++++++
 4 files changed, 35 insertions(+)
 create mode 100644 package/qt5/qt5lottie/Config.in
 create mode 100644 package/qt5/qt5lottie/qt5lottie.hash
 create mode 100644 package/qt5/qt5lottie/qt5lottie.mk

diff --git a/package/qt5/Config.in b/package/qt5/Config.in
index c31f8267f3..fc0e68e8b7 100644
--- a/package/qt5/Config.in
+++ b/package/qt5/Config.in
@@ -46,6 +46,7 @@ source "package/qt5/qt5enginio/Config.in"
 source "package/qt5/qt5graphicaleffects/Config.in"
 source "package/qt5/qt5imageformats/Config.in"
 source "package/qt5/qt5location/Config.in"
+source "package/qt5/qt5lottie/Config.in"
 source "package/qt5/qt5multimedia/Config.in"
 source "package/qt5/qt5quickcontrols/Config.in"
 source "package/qt5/qt5quickcontrols2/Config.in"
diff --git a/package/qt5/qt5lottie/Config.in b/package/qt5/qt5lottie/Config.in
new file mode 100644
index 0000000000..de5f16d5ea
--- /dev/null
+++ b/package/qt5/qt5lottie/Config.in
@@ -0,0 +1,12 @@
+config BR2_PACKAGE_QT5LOTTIE
+	bool "qt5lottie"
+	depends on BR2_PACKAGE_QT5_JSCORE_AVAILABLE
+	select BR2_PACKAGE_QT5DECLARATIVE
+	select BR2_PACKAGE_QT5DECLARATIVE_QUICK
+	help
+	  Qt is a cross-platform application and UI framework for
+	  developers using C++.
+
+	  This package corresponds to the qt5lottie module.
+
+	  https://doc.qt.io/qt-5/qtlottieanimation-index.html
diff --git a/package/qt5/qt5lottie/qt5lottie.hash b/package/qt5/qt5lottie/qt5lottie.hash
new file mode 100644
index 0000000000..3af1c6de31
--- /dev/null
+++ b/package/qt5/qt5lottie/qt5lottie.hash
@@ -0,0 +1,6 @@
+# Hash from: http://download.qt.io/official_releases/qt/5.15/5.15.1/submodules/qtlottie-everywhere-src-5.15.1.tar.xz.sha256
+sha256  845987860c7990035a7cd9a0e7581d210f786e551882df8b5be69f08987f2ba0  qtlottie-everywhere-src-5.15.1.tar.xz
+
+# Hashes for license files:
+sha256  8ceb4b9ee5adedde47b31e975c1d90c73ad27b6b165a1dcd80c7c545eb65b903  LICENSE.GPL3
+sha256  0dbe024961f6ab5c52689cbd036c977975d0d0f6a67ff97762d96cb819dd5652  LICENSE.GPL3-EXCEPT
diff --git a/package/qt5/qt5lottie/qt5lottie.mk b/package/qt5/qt5lottie/qt5lottie.mk
new file mode 100644
index 0000000000..1423a629b9
--- /dev/null
+++ b/package/qt5/qt5lottie/qt5lottie.mk
@@ -0,0 +1,16 @@
+################################################################################
+#
+# qt5lottie
+#
+################################################################################
+
+QT5LOTTIE_VERSION = $(QT5_VERSION)
+QT5LOTTIE_SITE = $(QT5_SITE)
+QT5LOTTIE_SOURCE = qtlottie-$(QT5_SOURCE_TARBALL_PREFIX)-$(QT5LOTTIE_VERSION).tar.xz
+QT5LOTTIE_DEPENDENCIES = qt5declarative
+QT5LOTTIE_INSTALL_STAGING = YES
+
+QT5LOTTIE_LICENSE = GPL-3.0
+QT5LOTTIE_LICENSE_FILES = LICENSE.GPL3 LICENSE.GPL3-EXCEPT
+
+$(eval $(qmake-package))
-- 
2.28.0

^ permalink raw reply related	[flat|nested] 2+ messages in thread

* [Buildroot] [PATCH v1] package/qt5lottie: new package
  2020-10-12 21:16 [Buildroot] [PATCH v1] package/qt5lottie: new package Peter Seiderer
@ 2020-10-14 21:33 ` Thomas Petazzoni
  0 siblings, 0 replies; 2+ messages in thread
From: Thomas Petazzoni @ 2020-10-14 21:33 UTC (permalink / raw)
  To: buildroot

On Mon, 12 Oct 2020 23:16:17 +0200
Peter Seiderer <ps.report@gmx.net> wrote:

> Signed-off-by: Peter Seiderer <ps.report@gmx.net>
> ---
>  package/qt5/Config.in                |  1 +
>  package/qt5/qt5lottie/Config.in      | 12 ++++++++++++
>  package/qt5/qt5lottie/qt5lottie.hash |  6 ++++++
>  package/qt5/qt5lottie/qt5lottie.mk   | 16 ++++++++++++++++
>  4 files changed, 35 insertions(+)
>  create mode 100644 package/qt5/qt5lottie/Config.in
>  create mode 100644 package/qt5/qt5lottie/qt5lottie.hash
>  create mode 100644 package/qt5/qt5lottie/qt5lottie.mk

Applied to master, thanks.

Thomas
-- 
Thomas Petazzoni, CTO, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2020-10-14 21:33 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-10-12 21:16 [Buildroot] [PATCH v1] package/qt5lottie: new package Peter Seiderer
2020-10-14 21:33 ` Thomas Petazzoni

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox