wok view gxine/receipt @ rev 3121

Add gxine (GTK gui for xine)
author Rohit Joshi <jozee@slitaz.org>
date Mon May 18 19:09:23 2009 +0000 (2009-05-18)
parents
children 061284ddd265
line source
1 # SliTaz package receipt.
3 PACKAGE="gxine"
4 VERSION="0.5.904"
5 CATEGORY="multimedia"
6 SHORT_DESC="GTK+ Xine media player user interface."
7 MAINTAINER="jozee@slitaz.org"
8 DEPENDS="xine-lib libvorbis gtk+"
9 BUILD_DEPENDS="firefox-dev xine-lib xine-lib-dev xorg-dev gtk+-dev hal dbus
10 xorg-libXinerama xorg-libXext xorg-libX11 libiconv-dev libiconv"
11 TARBALL="$PACKAGE-$VERSION.tar.bz2"
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.
17 compile_rules()
18 {
19 cd $src
20 export NSPR_LIBS="/usr/include/firefox"
21 ./configure --prefix=/usr \
22 --mandir=/usr/share/man \
23 --sysconfdir=/etc \
24 --with-spidermonkey=/usr/include/js \
25 --without-browser-plugin \
26 --disable-lirc \
27 --disable-integration-wizard \
28 $CONFIGURE_ARGS &&
29 make &&
30 make DESTDIR=$PWD/_pkg install
31 }
33 # Rules to gen a SliTaz package suitable for Tazpkg.
34 genpkg_rules()
35 {
36 mkdir -p $fs/usr/share $fs/etc $fs/usr/lib
37 cp -a $_pkg/usr/bin $fs/usr
38 cp -a $_pkg/usr/lib/$PACKAGE $fs/usr/lib
39 cp -a $_pkg/usr/share/$PACKAGE $fs/usr/share
40 cp -a $_pkg/usr/share/pixmaps $fs/usr/share
41 cp -a $_pkg/etc $fs
42 }