summaryrefslogtreecommitdiff
path: root/extra/libshout/PKGBUILD
diff options
context:
space:
mode:
Diffstat (limited to 'extra/libshout/PKGBUILD')
-rw-r--r--extra/libshout/PKGBUILD28
1 files changed, 28 insertions, 0 deletions
diff --git a/extra/libshout/PKGBUILD b/extra/libshout/PKGBUILD
new file mode 100644
index 000000000..decc80456
--- /dev/null
+++ b/extra/libshout/PKGBUILD
@@ -0,0 +1,28 @@
+# $Id: PKGBUILD 137685 2011-09-10 12:10:13Z pierre $
+# Maintainer: Giovanni Scafora <giovanni@archlinux.org>
+# Contributor: arjan <arjan@archlinux.org>
+# Contributor: Jason Chu <jchu@xentac.net>
+
+pkgname=libshout
+pkgver=2.2.2
+pkgrel=4
+epoch=1
+pkgdesc="Library for accessing a shoutcast/icecast server"
+arch=('i686' 'x86_64' 'mips64el')
+depends=('libvorbis' 'libtheora' 'speex')
+url="http://www.icecast.org/"
+options=('!libtool' '!emptydirs')
+license=('LGPL')
+source=("http://downloads.xiph.org/releases/${pkgname}/${pkgname}-${pkgver}.tar.gz")
+md5sums=('4f75fc9901c724b712c371c9a1e782d3')
+
+build() {
+ cd "${srcdir}/${pkgname}-${pkgver}"
+ ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var
+ make LDFLAGS+=-lspeex
+}
+
+package() {
+ cd "${srcdir}/${pkgname}-${pkgver}"
+ make DESTDIR="${pkgdir}" install
+}