diff options
Diffstat (limited to 'extra/xine-lib/Pkgfile')
-rwxr-xr-x | extra/xine-lib/Pkgfile | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/extra/xine-lib/Pkgfile b/extra/xine-lib/Pkgfile new file mode 100755 index 000000000..d49d3314b --- /dev/null +++ b/extra/xine-lib/Pkgfile @@ -0,0 +1,26 @@ +# Description: Contient la librairie xine +# URL: http://xinehq.de/ +# Maintainer: NuTyX core team +# Packager: fred.galusik at gmail dot com +# Depends on: libcaca, speex, libmng, esound, libvorbis, flac, libtheora, sdl, ffmpeg, vcdimager, wavpack + +name=xine-lib +version=1.1.16.3 +release=1 +source=(http://downloads.sourceforge.net/xine/$name-$version.tar.bz2) + +build() { +cd $name-$version + ./configure --prefix=/usr \ + --mandir=/usr/share/man \ + --with-w32-path=/usr/lib/codecs \ + --without-arts \ + --disable-gnomevfs \ + --disable-aalib \ + --disable-modplug \ + --with-external-ffmpeg \ + --enable-static + make + make DESTDIR=$PKG install +} + |