wok view xine-ui/receipt @ rev 21160

Up ufraw (0.22)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Mar 31 15:04:44 2019 +0200 (2019-03-31)
parents 16e9eac23bd8
children b1b5c2c950b5
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 # Use a custom .desktop file
20 GENERIC_MENUS="no"
22 # Rules to configure and make the package.
23 compile_rules()
24 {
25 ./configure \
26 --without-curl \
27 --disable-lirc \
28 $CONFIGURE_ARGS &&
29 make && make install
30 }
32 # Rules to gen a SliTaz package suitable for Tazpkg.
33 genpkg_rules()
34 {
35 mkdir -p $fs/usr/share
36 cp -a $install/usr/bin $fs/usr
37 cp -a $install/usr/share/xine $fs/usr/share
39 # Remove the sample default.avi
40 rm $fs/usr/share/xine/visuals/*.mpv
41 }