From patchwork Wed Oct 15 21:23:48 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: =?utf-8?q?J=C3=B6rg_Krause?= X-Patchwork-Id: 400091 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from hemlock.osuosl.org (hemlock.osuosl.org [140.211.166.133]) by ozlabs.org (Postfix) with ESMTP id 1F21D1400E9 for ; Thu, 16 Oct 2014 08:23:55 +1100 (EST) Received: from localhost (localhost [127.0.0.1]) by hemlock.osuosl.org (Postfix) with ESMTP id B293E94BC9; Wed, 15 Oct 2014 21:23:54 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from hemlock.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id NGL8x3mAY7cN; Wed, 15 Oct 2014 21:23:51 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by hemlock.osuosl.org (Postfix) with ESMTP id EFEA794B70; Wed, 15 Oct 2014 21:23:50 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from hemlock.osuosl.org (hemlock.osuosl.org [140.211.166.133]) by ash.osuosl.org (Postfix) with ESMTP id 1B5BD1C1766 for ; Wed, 15 Oct 2014 21:23:50 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by hemlock.osuosl.org (Postfix) with ESMTP id 1887594B70 for ; Wed, 15 Oct 2014 21:23:50 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from hemlock.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id ICX3mwZpTcJs for ; Wed, 15 Oct 2014 21:23:46 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mx02.posteo.de (mx02.posteo.de [89.146.194.165]) by hemlock.osuosl.org (Postfix) with ESMTPS id 2E4C994B5B for ; Wed, 15 Oct 2014 21:23:45 +0000 (UTC) Received: from localhost (localhost.localdomain [127.0.0.1]) by mx02.posteo.de (Postfix) with ESMTP id 5350E25A3DE4 for ; Wed, 15 Oct 2014 23:23:43 +0200 (CEST) X-Virus-Scanned: amavisd-new at posteo.de Received: from posteo.de ([10.125.125.178]) (using TLS) by localhost (amavis1.posteo.de [10.125.125.165]) (amavisd-new, port 10026) with ESMTPS id oN3tdGPuubO0; Wed, 15 Oct 2014 23:23:38 +0200 (CEST) Received: from mail.posteo.de (localhost [127.0.0.1]) by mail.posteo.de (Postfix) with ESMTPSA id 159192C0108; Wed, 15 Oct 2014 23:23:37 +0200 (CEST) From: =?UTF-8?q?J=C3=B6rg=20Krause?= To: buildroot@buildroot.org Date: Wed, 15 Oct 2014 23:23:48 +0200 Message-Id: <1413408231-31696-1-git-send-email-jkrause@posteo.de> X-Mailer: git-send-email 2.1.2 MIME-Version: 1.0 Subject: [Buildroot] [PATCH 1/4] libshout: 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: , Errors-To: buildroot-bounces@busybox.net Sender: "buildroot" Signed-off-by: Jörg Krause --- package/Config.in | 1 + package/libshout/Config.in | 10 ++++++++++ package/libshout/libshout.mk | 14 ++++++++++++++ 3 files changed, 25 insertions(+) create mode 100644 package/libshout/Config.in create mode 100644 package/libshout/libshout.mk diff --git a/package/Config.in b/package/Config.in index 19bb9bf..f0eb71a 100644 --- a/package/Config.in +++ b/package/Config.in @@ -805,6 +805,7 @@ menu "Networking" source "package/librsync/Config.in" source "package/libsocketcan/Config.in" source "package/libshairplay/Config.in" + source "package/libshout/Config.in" source "package/libsoup/Config.in" source "package/libstrophe/Config.in" source "package/libtirpc/Config.in" diff --git a/package/libshout/Config.in b/package/libshout/Config.in new file mode 100644 index 0000000..36c8531 --- /dev/null +++ b/package/libshout/Config.in @@ -0,0 +1,10 @@ +config BR2_PACKAGE_LIBSHOUT + bool "libshout" + select BR2_PACKAGE_LIBOGG + select BR2_PACKAGE_LIBVORBIS + help + Libshout is a library for communicating with and sending data to an + icecast server. It handles the socket connection, the timing of the + data, and prevents bad data from getting to the icecast server. + + http://icecast.org/download/ diff --git a/package/libshout/libshout.mk b/package/libshout/libshout.mk new file mode 100644 index 0000000..9d7f39c --- /dev/null +++ b/package/libshout/libshout.mk @@ -0,0 +1,14 @@ +################################################################################ +# +# libshout +# +################################################################################ + +LIBSHOUT_VERSION = 2.3.1 +LIBSHOUT_SITE = http://downloads.xiph.org/releases/libshout +LIBSHOUT_LICENSE = LGPLv2 +LIBSHOUT_LICENSE_FILES = COPYING +LIBSHOUT_INSTALL_STAGING = YES +LIBSHOUT_DEPENDENCIES = libogg libvorbis + +$(eval $(autotools-package))