wok annotate xine-ui/receipt @ rev 2929

gvim: update path
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu May 07 11:06:49 2009 +0200 (2009-05-07)
parents 67e762d76d21
children 61ea1b07d082
rev   line source
pankso@33 1 # SliTaz package receipt.
pankso@33 2
pankso@33 3 PACKAGE="xine-ui"
pankso@33 4 VERSION="0.99.5"
pankso@206 5 CATEGORY="multimedia"
pankso@33 6 SHORT_DESC="Xine media player user interface."
pankso@33 7 MAINTAINER="pankso@slitaz.org"
pascal@2419 8 DEPENDS="xine-lib libvorbis xorg-libXtst xorg-libXv curl libldap cyrus-sasl \
pascal@2419 9 openssl libiconv libpng ncurses readline xorg-libXft"
pascal@1516 10 BUILD_DEPENDS="xine-lib xine-lib-dev xorg-dev xorg-libXtst-dev xorg-libXv-dev"
pankso@33 11 TARBALL="$PACKAGE-$VERSION.tar.gz"
pankso@33 12 WEB_SITE="http://www.xinehq.de/"
pankso@33 13 WGET_URL="http://switch.dl.sourceforge.net/sourceforge/xine/$TARBALL"
pankso@33 14
pankso@33 15 # Rules to configure and make the package.
pankso@33 16 compile_rules()
pankso@33 17 {
pankso@33 18 cd $src
pankso@497 19 ./configure --prefix=/usr \
pascal@1516 20 --mandir=/usr/share/man $CONFIGURE_ARGS &&
pascal@1516 21 make &&
pankso@33 22 make DESTDIR=$PWD/_pkg install
pankso@33 23 }
pankso@33 24
pankso@33 25 # Rules to gen a SliTaz package suitable for Tazpkg.
pankso@33 26 genpkg_rules()
pankso@33 27 {
pankso@496 28 mkdir -p $fs/usr/share
pankso@33 29 cp -a $_pkg/usr/bin $fs/usr
pankso@33 30 cp -a $_pkg/usr/share/xine $fs/usr/share
pankso@33 31 }
pankso@33 32