wok view xine-ui/receipt @ rev 6075

xine-lib: add optionnal faad support
author Antoine Bodin <gokhlayeh@mailoo.org>
date Sat Aug 28 14:25:48 2010 +0200 (2010-08-28)
parents 79eb1bd99d53
children af9a1b47948c
line source
1 # SliTaz package receipt.
3 PACKAGE="xine-ui"
4 VERSION="0.99.5"
5 CATEGORY="multimedia"
6 SHORT_DESC="Xine media player user interface."
7 MAINTAINER="pankso@slitaz.org"
8 DEPENDS="xine-lib libvorbis xorg-libXtst xorg-libXv openssl libpng \
9 ncurses readline xorg-libXft xorg-libXxf86vm"
10 BUILD_DEPENDS="xine-lib xine-lib-dev xorg-dev xorg-libXtst-dev xorg-libXv-dev \
11 xorg-inputproto xorg-xf86vidmodeproto"
12 TARBALL="$PACKAGE-$VERSION.tar.gz"
13 WEB_SITE="http://www.xine-project.org/"
14 WGET_URL="http://switch.dl.sourceforge.net/sourceforge/xine/$TARBALL"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 ./configure \
21 --prefix=/usr \
22 --mandir=/usr/share/man \
23 --without-curl \
24 $CONFIGURE_ARGS &&
25 make &&
26 make DESTDIR=$PWD/_pkg install
27 }
29 # Rules to gen a SliTaz package suitable for Tazpkg.
30 genpkg_rules()
31 {
32 mkdir -p $fs/usr/share
33 cp -a $_pkg/usr/bin $fs/usr
34 cp -a $_pkg/usr/share/xine $fs/usr/share
36 # Remove the sample default.avi
37 rm $fs/usr/share/xine/visuals/*.avi
38 }