From: Marian Cichy <m.cichy@pengutronix.de>
To: ptxdist@pengutronix.de
Cc: Marian Cichy <m.cichy@pengutronix.de>
Subject: [ptxdist] [PATCH v4 3/3] gst-bayer2rgb-neon: add package
Date: Sat, 6 Jun 2020 16:47:03 +0200 [thread overview]
Message-ID: <20200606144703.11450-3-m.cichy@pengutronix.de> (raw)
In-Reply-To: <20200606144703.11450-1-m.cichy@pengutronix.de>
Signed-off-by: Marian Cichy <m.cichy@pengutronix.de>
---
Changes since v3:
- fix _LICENSE_FILES syntax
- remove redundant _CONV_ENF
- break a line
---
rules/gst-bayer2rgb-neon.in | 11 +++++++
rules/gst-bayer2rgb-neon.make | 58 +++++++++++++++++++++++++++++++++++
2 files changed, 69 insertions(+)
create mode 100644 rules/gst-bayer2rgb-neon.in
create mode 100644 rules/gst-bayer2rgb-neon.make
diff --git a/rules/gst-bayer2rgb-neon.in b/rules/gst-bayer2rgb-neon.in
new file mode 100644
index 000000000..1f4feeb8b
--- /dev/null
+++ b/rules/gst-bayer2rgb-neon.in
@@ -0,0 +1,11 @@
+## SECTION=multimedia_gstreamer1
+
+config GST_BAYER2RGB_NEON
+ tristate
+ prompt "gst-bayer2rgb-neon"
+ select BAYER2RGB3
+ select GSTREAMER1
+ select GST_PLUGINS_BASE1
+ help
+ Inofficial Gstreamer-plugin that utilizes
+ NEON-extension to convert video/x-bayer to RGB.
diff --git a/rules/gst-bayer2rgb-neon.make b/rules/gst-bayer2rgb-neon.make
new file mode 100644
index 000000000..4bd003161
--- /dev/null
+++ b/rules/gst-bayer2rgb-neon.make
@@ -0,0 +1,58 @@
+# -*-makefile-*-
+#
+# Copyright (C) 2020 by Marian Cichy <m.cichy@pengutronix.de>
+#
+# For further information about the PTXdist project and license conditions
+# see the README file.
+#
+
+#
+# We provide this package
+#
+PACKAGES-$(PTXCONF_GST_BAYER2RGB_NEON) += gst-bayer2rgb-neon
+
+#
+# Paths and names
+#
+GST_BAYER2RGB_NEON_VERSION := 0.3
+GST_BAYER2RGB_NEON_MD5 := 73f05f8504e29c03d6b1164ee37b4fb9
+GST_BAYER2RGB_NEON := gst-bayer2rgb-neon-$(GST_BAYER2RGB_NEON_VERSION)
+GST_BAYER2RGB_NEON_SUFFIX := tar.bz2
+GST_BAYER2RGB_NEON_URL := https://git.phytec.de/gst-bayer2rgb-neon/snapshot/$(GST_BAYER2RGB_NEON).$(GST_BAYER2RGB_NEON_SUFFIX)
+GST_BAYER2RGB_NEON_SOURCE := $(SRCDIR)/$(GST_BAYER2RGB_NEON).$(GST_BAYER2RGB_NEON_SUFFIX)
+GST_BAYER2RGB_NEON_DIR := $(BUILDDIR)/$(GST_BAYER2RGB_NEON)
+GST_BAYER2RGB_NEON_LICENSE := GPL-3.0-only
+GST_BAYER2RGB_NEON_LICENSE_FILES:= file://COPYING;md5=d32239bcb673463ab874e80d47fae504
+
+# ----------------------------------------------------------------------------
+# Prepare
+# ----------------------------------------------------------------------------
+
+#
+# autoconf
+#
+GST_BAYER2RGB_NEON_CONF_TOOL := autoconf
+GST_BAYER2RGB_NEON_CONF_OPT := \
+ $(CROSS_AUTOCONF_USR) \
+ --with-plugindir=/usr/lib/gstreamer-1.0
+
+# ----------------------------------------------------------------------------
+# Target-Install
+# ----------------------------------------------------------------------------
+
+$(STATEDIR)/gst-bayer2rgb-neon.targetinstall:
+ @$(call targetinfo)
+
+ @$(call install_init, gst-bayer2rgb-neon)
+ @$(call install_fixup, gst-bayer2rgb-neon,PRIORITY,optional)
+ @$(call install_fixup, gst-bayer2rgb-neon,SECTION,base)
+ @$(call install_fixup, gst-bayer2rgb-neon,AUTHOR,"Marian Cichy <m.cichy@pengutronix.de>")
+ @$(call install_fixup, gst-bayer2rgb-neon,DESCRIPTION,missing)
+
+ @$(call install_lib, gst-bayer2rgb-neon, 0, 0, 644, \
+ gstreamer-1.0/gstbayer2rgbneon)
+ @$(call install_finish, gst-bayer2rgb-neon)
+
+ @$(call touch)
+
+# vim: syntax=make
--
2.20.1
_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de
next prev parent reply other threads:[~2020-06-06 14:47 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-06-06 14:47 [ptxdist] [PATCH v4 1/3] host-gengetopt: " Marian Cichy
2020-06-06 14:47 ` [ptxdist] [PATCH v4 2/3] bayer2rgb3: " Marian Cichy
2020-06-12 11:32 ` [ptxdist] [APPLIED] " Michael Olbrich
2020-06-06 14:47 ` Marian Cichy [this message]
2020-06-12 11:32 ` [ptxdist] [APPLIED] gst-bayer2rgb-neon: " Michael Olbrich
2020-06-12 11:32 ` [ptxdist] [APPLIED] host-gengetopt: " Michael Olbrich
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20200606144703.11450-3-m.cichy@pengutronix.de \
--to=m.cichy@pengutronix.de \
--cc=ptxdist@pengutronix.de \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox