20 lines
618 B
Plaintext
20 lines
618 B
Plaintext
|
# Description: a free, GPL-licensed video player for UNIX-like systems
|
||
|
# URL: http://xine.sourceforge.net
|
||
|
# Maintainer: sten, nick dot steeves at shaw dot ca
|
||
|
# Packager:
|
||
|
# Depends on: x11, libpng, alsa-lib, libdvdnav, libogg, libvorbis, esound, flac, libsdl, arts, libmng, libmad, liba52, samba, speex, samba, libtheora, faad2
|
||
|
|
||
|
name=xine-lib
|
||
|
version=1.0.3
|
||
|
release=2
|
||
|
source=(http://dl.sourceforge.net/sourceforge/xine/$name-${version}a.tar.gz)
|
||
|
|
||
|
build() {
|
||
|
unset CFLAGS CXXFLAGS
|
||
|
cd $name-$version
|
||
|
./configure --prefix=/usr --disable-nls
|
||
|
make
|
||
|
make DESTDIR=$PKG install
|
||
|
rm -rf $PKG/usr/share/doc
|
||
|
}
|