From patchwork Thu Feb 2 07:27:28 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Bernd Kuhls X-Patchwork-Id: 722880 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from silver.osuosl.org (smtp3.osuosl.org [140.211.166.136]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 3vDWpw2N2cz9s76 for ; Thu, 2 Feb 2017 18:29:44 +1100 (AEDT) Received: from localhost (localhost [127.0.0.1]) by silver.osuosl.org (Postfix) with ESMTP id 954B931311; Thu, 2 Feb 2017 07:29:42 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from silver.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id qz7uUGy0FYs1; Thu, 2 Feb 2017 07:29:35 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by silver.osuosl.org (Postfix) with ESMTP id DAFA730204; Thu, 2 Feb 2017 07:28:56 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from whitealder.osuosl.org (smtp1.osuosl.org [140.211.166.138]) by ash.osuosl.org (Postfix) with ESMTP id 50A191C048D for ; Thu, 2 Feb 2017 07:28:22 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 46A0389E53 for ; Thu, 2 Feb 2017 07:28:22 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from whitealder.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id yJWC7GnrUUu8 for ; Thu, 2 Feb 2017 07:28:21 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mailout01.t-online.de (mailout01.t-online.de [194.25.134.80]) by whitealder.osuosl.org (Postfix) with ESMTPS id BA40889E4D for ; Thu, 2 Feb 2017 07:28:20 +0000 (UTC) Received: from fwd03.aul.t-online.de (fwd03.aul.t-online.de [172.20.27.148]) by mailout01.t-online.de (Postfix) with SMTP id A68C14305EB0; Thu, 2 Feb 2017 08:28:14 +0100 (CET) Received: from fli4l.lan.fli4l (ZqYpOEZ-gh7jve31lWhcHPzMiw3ljXQO2cY5liWQHFNpKICb6oaRNZb2UYLlPhnZHg@[84.191.202.111]) by fwd03.t-online.de with (TLSv1:ECDHE-RSA-AES256-SHA encrypted) esmtp id 1cZBoR-0NcYTo0; Thu, 2 Feb 2017 08:28:11 +0100 Received: from mahler.lan.fli4l ([192.168.1.1]:43462 helo=kuhls.lan.fli4l) by fli4l.lan.fli4l with esmtp (Exim 4.88) (envelope-from ) id 1cZBoQ-0004zz-4g; Thu, 02 Feb 2017 08:28:10 +0100 From: Bernd Kuhls To: buildroot@buildroot.org Date: Thu, 2 Feb 2017 08:27:28 +0100 Message-Id: <20170202072756.6624-10-bernd.kuhls@t-online.de> X-Mailer: git-send-email 2.11.0 In-Reply-To: <20170202072756.6624-1-bernd.kuhls@t-online.de> References: <20170202072756.6624-1-bernd.kuhls@t-online.de> X-ID: ZqYpOEZ-gh7jve31lWhcHPzMiw3ljXQO2cY5liWQHFNpKICb6oaRNZb2UYLlPhnZHg X-TOI-MSGID: df61cb2a-14f5-46cb-aeab-3783b8b743fb Cc: Bernd Kuhls Subject: [Buildroot] [PATCH 10/38] package/kodi-inputstream-rtmp: new package X-BeenThere: buildroot@busybox.net X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Discussion and development of buildroot List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: buildroot-bounces@busybox.net Sender: "buildroot" Signed-off-by: Bernd Kuhls --- package/kodi-inputstream-rtmp/Config.in | 7 +++++++ package/kodi-inputstream-rtmp/kodi-inputstream-rtmp.hash | 2 ++ package/kodi-inputstream-rtmp/kodi-inputstream-rtmp.mk | 13 +++++++++++++ package/kodi/Config.in | 4 ++++ 4 files changed, 26 insertions(+) create mode 100644 package/kodi-inputstream-rtmp/Config.in create mode 100644 package/kodi-inputstream-rtmp/kodi-inputstream-rtmp.hash create mode 100644 package/kodi-inputstream-rtmp/kodi-inputstream-rtmp.mk diff --git a/package/kodi-inputstream-rtmp/Config.in b/package/kodi-inputstream-rtmp/Config.in new file mode 100644 index 000000000..c40bff2d7 --- /dev/null +++ b/package/kodi-inputstream-rtmp/Config.in @@ -0,0 +1,7 @@ +config BR2_PACKAGE_KODI_INPUTSTREAM_RTMP + bool "kodi-inputstream-rtmp" + select BR2_PACKAGE_RTMPDUMP + help + RTMP input stream add-on for Kodi + + https://github.com/notspiff/inputstream.rtmp diff --git a/package/kodi-inputstream-rtmp/kodi-inputstream-rtmp.hash b/package/kodi-inputstream-rtmp/kodi-inputstream-rtmp.hash new file mode 100644 index 000000000..673547300 --- /dev/null +++ b/package/kodi-inputstream-rtmp/kodi-inputstream-rtmp.hash @@ -0,0 +1,2 @@ +# Locally computed +sha256 d89ebb21256fcac35ddb961d42e2cae7709b15a431e717054a0cab7f9a54b391 kodi-inputstream-rtmp-v1.0.3.tar.gz diff --git a/package/kodi-inputstream-rtmp/kodi-inputstream-rtmp.mk b/package/kodi-inputstream-rtmp/kodi-inputstream-rtmp.mk new file mode 100644 index 000000000..c19fe562e --- /dev/null +++ b/package/kodi-inputstream-rtmp/kodi-inputstream-rtmp.mk @@ -0,0 +1,13 @@ +################################################################################ +# +# kodi-inputstream-rtmp +# +################################################################################ + +KODI_INPUTSTREAM_RTMP_VERSION = v1.0.3 +KODI_INPUTSTREAM_RTMP_SITE = $(call github,notspiff,inputstream.rtmp,$(KODI_INPUTSTREAM_RTMP_VERSION)) +KODI_INPUTSTREAM_RTMP_LICENSE = GPLv2+ +KODI_INPUTSTREAM_RTMP_LICENSE_FILES = src/RTMPStream.cpp +KODI_INPUTSTREAM_RTMP_DEPENDENCIES = kodi rtmpdump + +$(eval $(cmake-package)) diff --git a/package/kodi/Config.in b/package/kodi/Config.in index ef555b502..842e0b6a3 100644 --- a/package/kodi/Config.in +++ b/package/kodi/Config.in @@ -267,6 +267,10 @@ menu "Audio encoder addons" source "package/kodi-audioencoder-wav/Config.in" endmenu +menu "Inputstream addons" + source "package/kodi-inputstream-rtmp/Config.in" +endmenu + menu "PVR addons" source "package/kodi-pvr-argustv/Config.in" source "package/kodi-pvr-dvblink/Config.in"