25 lines
656 B
Plaintext
25 lines
656 B
Plaintext
# Description: A free, GPL-licensed video player for UNIX-like systems.
|
|
# URL: http://xine.sourceforge.net
|
|
# Maintainer: Danny Rawlins, romster at shortcircuit dot net dot au
|
|
# Packager: sten, nick dot steeves at shaw dot ca
|
|
# Depends on: x11, libpng, libdvdnav, libvorbis, flac, libsdl, libmng, libmad, liba52, libspeex, libtheora, faad2, gdk-pixbuf
|
|
|
|
name=xine-lib
|
|
version=1.1.2
|
|
release=1
|
|
source=(http://dl.sourceforge.net/sourceforge/xine/$name-$version.tar.bz2)
|
|
|
|
build() {
|
|
unset CFLAGS CXXFLAGS
|
|
cd $name-$version
|
|
|
|
./configure \
|
|
--prefix=/usr \
|
|
--disable-nls \
|
|
--mandir=/usr/man
|
|
|
|
make && make DESTDIR=$PKG install
|
|
rm -r $PKG/usr/share/doc
|
|
}
|
|
|