wok view xine-ui/receipt @ rev 3133

Remove bin86. Already exist in dev86
author Eric Joseph-Alexandre <erjo@slitaz.org>
date Wed May 20 16:13:00 2009 +0200 (2009-05-20)
parents 61ea1b07d082
children 6f0c6dbd2e3a
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 libiconv 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 }