summaryrefslogtreecommitdiff
path: root/repo/libshout
diff options
context:
space:
mode:
authordavidovski <david@davidovski.xyz>2022-07-15 00:52:21 +0100
committerdavidovski <david@davidovski.xyz>2022-07-15 00:52:21 +0100
commit9a26d3fdc7fca2df6f824b56034ab9a823e898d8 (patch)
tree278bbf05c72536a30e701eebbd3546ba137543e7 /repo/libshout
parentf6332a43c35387c4a2dea1746be5fd092890ae0e (diff)
added python deps for libvirt
Diffstat (limited to 'repo/libshout')
-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
+}
+