diff options
author | Cecil Hugh Watson <knoppmyth@gmail.com> | 2008-12-02 08:52:13 (GMT) |
---|---|---|
committer | Cecil Hugh Watson <knoppmyth@gmail.com> | 2008-12-02 08:52:13 (GMT) |
commit | e649efa24662af962e6cbd7b9ece1bdd8f6a9340 (patch) | |
tree | d4d46580d6cc8c28ed801f250f73f9cc3b109a1c /abs/core-testing/xine-lib/PKGBUILD | |
parent | 90d20be43404c4986dc7285cc1dd3ab5f00918e4 (diff) | |
download | linhes_pkgbuild-e649efa24662af962e6cbd7b9ece1bdd8f6a9340.zip linhes_pkgbuild-e649efa24662af962e6cbd7b9ece1bdd8f6a9340.tar.gz linhes_pkgbuild-e649efa24662af962e6cbd7b9ece1bdd8f6a9340.tar.bz2 |
PKGBUILDs needed for Xine and Miro.
Diffstat (limited to 'abs/core-testing/xine-lib/PKGBUILD')
-rw-r--r-- | abs/core-testing/xine-lib/PKGBUILD | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/abs/core-testing/xine-lib/PKGBUILD b/abs/core-testing/xine-lib/PKGBUILD new file mode 100644 index 0000000..2808270 --- /dev/null +++ b/abs/core-testing/xine-lib/PKGBUILD @@ -0,0 +1,48 @@ +# $Id: PKGBUILD 19600 2008-11-28 03:09:29Z eric $ +# Maintainer: Eric Belanger <eric@archlinux.org> +# Contributor: Judd Vinet <jvinet@zeroflux.org> + +pkgname=xine-lib +pkgver=1.1.15 +pkgrel=3 +pkgdesc="A free video player for Unix" +arch=('i686' 'x86_64') +url="http://xinehq.de/" +license=('LGPL' 'GPL') +depends=('libgl' 'libxvmc' 'esd' 'flac>=1.1.4' 'libvorbis' 'sdl' 'libmng' 'libtheora' + 'libxcb' 'wavpack' 'ffmpeg>=20080715') +makedepends=('pkgconfig' 'libtool' 'imagemagick' 'smbclient' 'mesa' 'alsa-lib' + 'vcdimager' 'jack-audio-connection-kit') +options=('!libtool') +source=(http://downloads.sourceforge.net/sourceforge/xine/${pkgname}-${pkgver}.tar.bz2 + xine-lib-1.1.1-configure-no-mcpu-march.patch xine-header.patch xine-imagemagick.patch ffmpeg_xine.patch) +md5sums=('42a2b4893b7f892eb334de2fc36d49c8' '9776df4eb54d2f1f68d8268adbc3b5c2'\ + 'b139ee72700f8d118f9051e9140473f5' '45d248d45b747f049129925cbf25716d') +sha1sums=('bcb567ea2a11c5f26b2384d5400b8466ea9048c6' + '121a8358d7919b2e51067412373f52848290338a' + '30cd75db3f0c0002f467d85466f1c404452397df' + 'f0a0c04d5dfa3d0cd9246a1310f628deff489c12' + '9f6c360291060eed24c618d010034655') + +build() { + cd ${srcdir}/${pkgname}-${pkgver} + + patch -p0 < ../xine-lib-1.1.1-configure-no-mcpu-march.patch || return 1 + patch -p0 <../xine-header.patch || return 1 + patch -p1 <../xine-imagemagick.patch || return 1 + patch -p1 <../ffmpeg_xine.patch || return 1 + + libtoolize --force --copy || return 1 + aclocal -I m4 || return 1 + autoconf || return 1 + automake --add-missing || return 1 + + ./configure --prefix=/usr --with-w32-path=/usr/lib/codecs \ + --with-xv-path=/usr/lib --with-xxmc-path=/usr/lib --with-xvmc-path=/usr/lib \ + --with-libflac --with-wavpack \ + --without-arts --with-jack --without-speex \ + --disable-gnomevfs --without-pulseaudio --disable-aalib \ + --disable-modplug --with-external-ffmpeg || return 1 + make || return 1 + make DESTDIR=${pkgdir} install || return 1 +} |