wok view xine-ui/receipt @ rev 22539

updated bird (2.0.3 -> 2.0.7)
author Hans-G?nter Theisgen
date Fri Jan 03 16:08:36 2020 +0100 (2020-01-03)
parents b1b5c2c950b5
children ad86373a4a8c
line source
1 # SliTaz package receipt.
3 PACKAGE="xine-ui"
4 VERSION="0.99.10"
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="$SF_MIRROR/project/xine/xine-ui/$VERSION/$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 }