updated on Thu Jan 26 16:09:46 UTC 2012
[aur-mirror.git] / xine-lib-vdr / PKGBUILD
blob81aed029836fe9a8a3ae2daed823239d50224174
1 # Contributor: Franz Burgmann <f dot burgmann at gmail dot com>
3 pkgname=xine-lib-vdr
4 pkgver=1.1.16.3
5 pkgrel=7
6 pkgdesc="xine-lib with additional support for VDR."
7 arch=('i686' 'x86_64')
8 url="http://xinehq.de/"
9 license=('LGPL' 'GPL')
10 provides=('xine-lib')
11 conflicts=('xine-lib')
12 depends=('libgl' 'libxvmc' 'esound' 'flac' 'libvorbis' 'sdl' 'libmng' 'libtheora' 'libxcb' 'wavpack' 'ffmpeg' 'heimdal' 'autoconf')
13 optdepends=('vdr-xine')
14 makedepends=('pkgconfig' 'libtool' 'imagemagick' 'smbclient' 'mesa' 'alsa-lib' 
15              'vcdimager' 'jack-audio-connection-kit')
16 options=('!libtool')
17 source=(http://downloads.sourceforge.net/sourceforge/xine/xine-lib-${pkgver}.tar.bz2)
19 md5sums=('4f508abf088cf427a731f85634c8260d')
21 build() {
22   cd ${srcdir}/xine-lib-${pkgver}
23   
24   patch -p1 < ../../xine-lib.patch
26   libtoolize --force --copy || return 1
27   aclocal -I m4 || return 1
28   autoconf || return 1
29   automake --add-missing || return 1
31   ./configure --prefix=/usr --with-w32-path=/usr/lib/codecs \
32     --with-xv-path=/usr/lib --with-xxmc-path=/usr/lib --with-xvmc-path=/usr/lib \
33     --with-libflac --with-wavpack --with-xcb \
34     --without-arts --with-jack --without-speex \
35     --disable-gnomevfs --without-pulseaudio --disable-aalib \
36     --disable-modplug --with-external-ffmpeg || return 1
37   make || return 1
38   make DESTDIR=${pkgdir} install || return 1