changeset 912:ab11c9aba7c1

audio/libshout: initial import, closes #2220
author David Demelier <markand@malikania.fr>
date Mon, 26 Aug 2019 20:40:00 +0200
parents e66ecdc48805
children becf32eef32a
files audio/libshout/libshout.sh audio/libshout/libshout.sha1
diffstat 2 files changed, 73 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/audio/libshout/libshout.sh	Mon Aug 26 20:40:00 2019 +0200
@@ -0,0 +1,72 @@
+#!/bin/sh
+#
+# Copyright (c) 2019 David Demelier <markand@malikania.fr>
+#
+# Permission to use, copy, modify, and/or distribute this software for any
+# purpose with or without fee is hereby granted, provided that the above
+# copyright notice and this permission notice appear in all copies.
+#
+# THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
+# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
+# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
+# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
+# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
+# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
+# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
+#
+
+PKGNAME=libshout
+PKGVERSION=2.4.3
+PKGREVISION=1
+PKGLICENSE="LGPLv20"
+PKGSUMMARY="library for communicating with and sending data to an icecast server"
+PKGDOWNLOAD="http://downloads.xiph.org/releases/$PKGNAME/$PKGNAME-$PKGVERSION.tar.gz"
+PKGDEPENDS="libogg libvorbis libressl"
+PKGOPTIONS="SPEEX THEORA"
+
+: ${CHOST:=$(uname -m)-linux-musl}
+: ${CBUILD:=$(uname -m)-linux-musl}
+: ${CC:=clang}
+: ${CFLAGS:=-O2}
+: ${LDFLAGS:=}
+: ${LIBS:=}
+: ${SPEEX:=yes}
+: ${THEORA:=yes}
+
+if [ "$SPEEX" = "yes" ]; then
+	PKGDEPENDS="speex $PKGDEPENDS"
+	with_speex="--enable-speex"
+else
+	with_speex="--disable-speex"
+fi
+
+if [ "$THEORA" = "yes" ]; then
+	PKGDEPENDS="libtheora $PKGDEPENDS"
+	with_theora="--enable-theora"
+else
+	with_theora="--disable-theora"
+fi
+
+build()
+{
+	rm -rf $PKGNAME-$PKGVERSION
+	tar xvf $PKGNAME-$PKGVERSION.tar.gz
+	cd $PKGNAME-$PKGVERSION
+
+	CC="$CC" \
+	CFLAGS="$CFLAGS" \
+	LDFLAGS="$LDFLAGS" \
+	LIBS="$LIBS" \
+	./configure \
+		--build=$CBUILD \
+		--host=$CHOST \
+		--prefix= \
+		$with_speex \
+		$with_theora
+	make
+	make install DESTDIR=$DESTDIR
+	find $DESTDIR -type f -name "*.la" -delete
+
+	cd ..
+	rm -rf $PKGNAME-$PKGVERSION
+}
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/audio/libshout/libshout.sha1	Mon Aug 26 20:40:00 2019 +0200
@@ -0,0 +1,1 @@
+f14bef3072c81de94b512057bedf4d26cc211ae2  libshout-2.4.3.tar.gz