summaryrefslogtreecommitdiffstats
path: root/abs/extra/community/libshout/PKGBUILD
blob: b23c88ebd273914b83683ff503c0dac934d11ec6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# $Id: PKGBUILD 19191 2008-11-17 11:43:24Z jgc $
# Maintainer: Giovanni Scafora <giovanni@archlinux.org>
# Contributor: arjan <arjan@archlinux.org>
# Contributor: Jason Chu <jchu@xentac.net>

pkgname=libshout
pkgver=2.2.2
pkgrel=2
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=('LGPL2')
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
}