1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
# Description: Contient la librairie xine
# URL: http://xinehq.de/
# Maintainer: NuTyX core team
# Packager: thierryn1 at hispeed dot ch
# Depends on: mesa3d, xorg-libxvmc, xorg-libxcb, faad2, libcaca, speex, libmng, esound, libvorbis, flac, libtheora, sdl, ffmpeg, vcdimager, wavpack, samba3, librsvg, imagemagick, libvdpau
# Run on: mesa3d,xorg-libxvmc,xorg-libxcb,faad2,libcaca,speex,libmng,esound,libvorbis,flac,libtheora,sdl,ffmpeg,vcdimager,wavpack,samba3,librsvg,imagemagick,libvdpau
name=xine-lib
version=1.2.1
release=1
source=(http://downloads.sourceforge.net/xine/$name-$version.tar.xz)
build() {
cd $name-$version
./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
}
|