summaryrefslogtreecommitdiff
path: root/repo/libshout/libshout.xibuild
diff options
context:
space:
mode:
Diffstat (limited to 'repo/libshout/libshout.xibuild')
-rw-r--r--repo/libshout/libshout.xibuild27
1 files changed, 27 insertions, 0 deletions
diff --git a/repo/libshout/libshout.xibuild b/repo/libshout/libshout.xibuild
new file mode 100644
index 0000000..3ac7e79
--- /dev/null
+++ b/repo/libshout/libshout.xibuild
@@ -0,0 +1,27 @@
+#!/bin/sh
+
+NAME="libshout"
+DESC="Library for accessing a shoutcast/icecast server"
+
+MAKEDEPS="speex libtheora libvorbis "
+
+PKG_VER=2.4.6
+SOURCE="http://downloads.xiph.org/releases/libshout/libshout-$PKG_VER.tar.gz"
+
+build() {
+ ./configure \
+ --prefix=/usr \
+ --sysconfdir=/etc \
+ --localstatedir=/var \
+ --with-openssl
+ make LDFLAGS+=-lspeex
+}
+
+check() {
+ make check
+}
+
+package() {
+ make DESTDIR="$PKG_DEST" install
+}
+