diff options
author | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
---|---|---|
committer | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
commit | 415856bdd4f48ab4f2732996f0bae58595092bbe (patch) | |
tree | ede2018b591f6dfb477fe9341ba17b9bc000fab9 /extra/libshout |
Tue Apr 5 14:26:38 UTC 2011
Diffstat (limited to 'extra/libshout')
-rw-r--r-- | extra/libshout/PKGBUILD | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/extra/libshout/PKGBUILD b/extra/libshout/PKGBUILD new file mode 100644 index 000000000..c74560069 --- /dev/null +++ b/extra/libshout/PKGBUILD @@ -0,0 +1,23 @@ +# $Id: PKGBUILD 37197 2009-05-01 03:19:30Z eric $ +# Maintainer: Giovanni Scafora <giovanni@archlinux.org> +# Contributor: arjan <arjan@archlinux.org> +# Contributor: Jason Chu <jchu@xentac.net> + +pkgname=libshout +pkgver=2.2.2 +pkgrel=3 +pkgdesc="Library for accessing a shoutcast/icecast server" +arch=('i686' 'x86_64') +depends=('libvorbis' 'libtheora' 'speex') +url="http://www.icecast.org/" +options=('!libtool' 'force') +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 || return 1 + make LDFLAGS+=-lspeex || return 1 + make DESTDIR="${pkgdir}" install || return 1 +} |