wok view xine-ui/receipt @ rev 16430

svkbd: fix version
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri Apr 18 10:26:47 2014 +0000 (2014-04-18)
parents 20df32ac3945
children 16e9eac23bd8
line source
1 # SliTaz package receipt.
3 PACKAGE="xine-ui"
4 VERSION="0.99.7"
5 CATEGORY="multimedia"
6 SHORT_DESC="Xine media player user interface."
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="GPL2"
9 TARBALL="$PACKAGE-$VERSION.tar.xz"
10 WEB_SITE="http://www.xine-project.org/"
11 WGET_URL="http://switch.dl.sourceforge.net/sourceforge/xine/$TARBALL"
13 # Keep Xine small for Live system, we have MPlaye or VLC has big video player.
14 DEPENDS="xine-lib libvorbis xorg-libXtst xorg-libXv xorg-libXi libpng \
15 xorg-libXft xorg-libXxf86vm xorg-libXss"
16 BUILD_DEPENDS="xine-lib-dev xorg-dev xorg-libXv-dev xorg-libXxf86vm-dev \
17 libpng-dev jpeg-dev xorg-libXss-dev"
19 # Rules to configure and make the package.
20 compile_rules()
21 {
22 cd $src
23 ./configure \
24 --without-curl \
25 --disable-lirc \
26 $CONFIGURE_ARGS &&
27 make && make install
28 }
30 # Rules to gen a SliTaz package suitable for Tazpkg.
31 genpkg_rules()
32 {
33 mkdir -p $fs/usr/share/applications
34 cp -a $stuff/xine-ui.desktop $fs/usr/share/applications
35 cp -a $install/usr/bin $fs/usr
36 cp -a $install/usr/share/xine $fs/usr/share
38 # Remove the sample default.avi
39 rm $fs/usr/share/xine/visuals/*.mpv
40 }