wok annotate xine-ui/receipt @ rev 2114

Add: SuperTux 0.1.3
author Mallory MOLLO <mallory@skyrock.com>
date Fri Jan 30 00:46:35 2009 +0100 (2009-01-30)
parents 3f898e9b90bd
children ef0c5b97a33e
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@1656 8 DEPENDS="xine-lib libvorbis xorg-libXtst xorg-libXv curl libldap cyrus-sasl openssl"
pascal@1516 9 BUILD_DEPENDS="xine-lib xine-lib-dev xorg-dev xorg-libXtst-dev xorg-libXv-dev"
pankso@33 10 TARBALL="$PACKAGE-$VERSION.tar.gz"
pankso@33 11 WEB_SITE="http://www.xinehq.de/"
pankso@33 12 WGET_URL="http://switch.dl.sourceforge.net/sourceforge/xine/$TARBALL"
pankso@33 13
pankso@33 14 # Rules to configure and make the package.
pankso@33 15 compile_rules()
pankso@33 16 {
pankso@33 17 cd $src
pankso@497 18 ./configure --prefix=/usr \
pascal@1516 19 --mandir=/usr/share/man $CONFIGURE_ARGS &&
pascal@1516 20 make &&
pankso@33 21 make DESTDIR=$PWD/_pkg install
pankso@33 22 }
pankso@33 23
pankso@33 24 # Rules to gen a SliTaz package suitable for Tazpkg.
pankso@33 25 genpkg_rules()
pankso@33 26 {
pankso@496 27 mkdir -p $fs/usr/share
pankso@33 28 cp -a $_pkg/usr/bin $fs/usr
pankso@33 29 cp -a $_pkg/usr/share/xine $fs/usr/share
pankso@33 30 }
pankso@33 31