wok view xine-ui/receipt @ rev 12782

Up gogglesmm (0.12.6)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue May 15 10:39:16 2012 +0200 (2012-05-15)
parents 044f7a53c852
children 20df32ac3945
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 \
16 libpng-dev"
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 cd $src
22 ./configure \
23 --without-curl \
24 --disable-lirc \
25 $CONFIGURE_ARGS &&
26 make && make install
27 }
29 # Rules to gen a SliTaz package suitable for Tazpkg.
30 genpkg_rules()
31 {
32 mkdir -p $fs/usr/share/applications
33 cp -a $stuff/xine-ui.desktop $fs/usr/share/applications
34 cp -a $_pkg/usr/bin $fs/usr
35 cp -a $_pkg/usr/share/xine $fs/usr/share
37 # Remove the sample default.avi
38 rm $fs/usr/share/xine/visuals/*.avi
39 }