diff options
author | piernov <piernov@piernov.org> | 2011-10-04 19:56:58 +0200 |
---|---|---|
committer | piernov <piernov@piernov.org> | 2011-10-04 19:56:58 +0200 |
commit | d5cd481c17736041b5a0a334e62168620643e7c7 (patch) | |
tree | bb95ef6b1cbec1bc444ba4c1a715753a49e3a20d /extra/xine-lib/Pkgfile | |
parent | 40f9afeb3da87c4085adeda4f425a2a5394fbd9e (diff) | |
download | nutyx-extra-d5cd481c17736041b5a0a334e62168620643e7c7.tar.gz nutyx-extra-d5cd481c17736041b5a0a334e62168620643e7c7.tar.bz2 nutyx-extra-d5cd481c17736041b5a0a334e62168620643e7c7.tar.xz nutyx-extra-d5cd481c17736041b5a0a334e62168620643e7c7.zip |
xine-lib 1.1.19-3 ajout patch ffmpeg 0.8 + désactivation jack
Diffstat (limited to 'extra/xine-lib/Pkgfile')
-rwxr-xr-x | extra/xine-lib/Pkgfile | 35 |
1 files changed, 23 insertions, 12 deletions
diff --git a/extra/xine-lib/Pkgfile b/extra/xine-lib/Pkgfile index 58182668d..a4bb2b50b 100755 --- a/extra/xine-lib/Pkgfile +++ b/extra/xine-lib/Pkgfile @@ -7,31 +7,42 @@ name=xine-lib version=1.1.19 -release=2 +release=3 source=(http://downloads.sourceforge.net/xine/$name-$version.tar.bz2 - http://downloads.sourceforge.net/sourceforge/xine/compat.c \ + http://downloads.sourceforge.net/sourceforge/xine/compat.c xine-lib-1.1.1-configure-no-mcpu-march.patch - xine-lib-1.1.19-include.patch) + xine-lib-1.1.19-include.patch + xine-lib-1.1.19-ffmpeg.patch) build() { cd $name-$version + cp ../compat.c src/dxr3/compat.c patch -p0 < ../xine-lib-1.1.1-configure-no-mcpu-march.patch - patch -Np0 -i ../xine-lib-1.1.19-include.patch + patch -p0 < ../xine-lib-1.1.19-include.patch + patch -p0 < ../xine-lib-1.1.19-ffmpeg.patch libtoolize --force --copy aclocal -I m4 autoconf automake --add-missing - ./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 --with-xcb \ - --without-arts --without-speex \ - --disable-gnomevfs --without-pulseaudio --disable-aalib \ - --disable-modplug --with-external-ffmpeg + ./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 \ + --with-xcb \ + --without-arts \ + --without-speex \ + --disable-gnomevfs \ + --without-pulseaudio \ + --disable-aalib \ + --disable-modplug \ + --with-external-ffmpeg \ + --without-jack make make DESTDIR=$PKG install } - - |