wok view xine-ui/receipt @ rev 3703

Remove: ldraw
author Matthew Sheets <rcx@zoominternet.net>
date Fri Jul 17 15:59:06 2009 +0000 (2009-07-17)
parents 6f0c6dbd2e3a
children 79eb1bd99d53
line source
1 # SliTaz package receipt.
3 PACKAGE="xine-ui"
4 VERSION="0.99.5"
5 CATEGORY="multimedia"
6 SHORT_DESC="Xine media player user interface."
7 MAINTAINER="pankso@slitaz.org"
8 DEPENDS="xine-lib libvorbis xorg-libXtst xorg-libXv curl libldap cyrus-sasl \
9 openssl libpng ncurses readline xorg-libXft"
10 BUILD_DEPENDS="xine-lib xine-lib-dev xorg-dev xorg-libXtst-dev xorg-libXv-dev"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WEB_SITE="http://www.xine-project.org/"
13 WGET_URL="http://switch.dl.sourceforge.net/sourceforge/xine/$TARBALL"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 ./configure --prefix=/usr \
20 --mandir=/usr/share/man $CONFIGURE_ARGS &&
21 make &&
22 make DESTDIR=$PWD/_pkg install
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 mkdir -p $fs/usr/share
29 cp -a $_pkg/usr/bin $fs/usr
30 cp -a $_pkg/usr/share/xine $fs/usr/share
32 # Remove the sample default.avi
33 rm $fs/usr/share/xine/visuals/*.avi
34 }