wok view xine-ui/receipt @ rev 12526

Clean up xine-ui (Keep it small please!)
author Christophe Lincoln <pankso@slitaz.org>
date Wed Apr 25 00:40:43 2012 +0200 (2012-04-25)
parents a2a779a6f0d1
children 33efedb07365
line source
1 # SliTaz package receipt.
3 PACKAGE="xine-ui"
4 VERSION="0.99.6"
5 CATEGORY="multimedia"
6 SHORT_DESC="Xine media player user interface."
7 MAINTAINER="pankso@slitaz.org"
8 TARBALL="$PACKAGE-$VERSION.tar.xz"
9 WEB_SITE="http://www.xine-project.org/"
10 WGET_URL="http://switch.dl.sourceforge.net/sourceforge/xine/$TARBALL"
12 # Keep Xine small for Live system, we have MPlaye or VLC has big video player.
13 DEPENDS="xine-lib libvorbis xorg-libXtst xorg-libXv xorg-libXi libpng \
14 xorg-libXft xorg-libXxf86vm"
15 BUILD_DEPENDS="xine-lib-dev xorg-dev xorg-libXv-dev xorg-libXxf86vm-dev"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 cd $src
21 ./configure \
22 --without-curl \
23 --disable-lirc \
24 $CONFIGURE_ARGS &&
25 make && make install
26 }
28 # Rules to gen a SliTaz package suitable for Tazpkg.
29 genpkg_rules()
30 {
31 mkdir -p $fs/usr/share/applications
32 cp -a $stuff/xine-ui.desktop $fs/usr/share/applications
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 }