wok 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 | f4cef882eac1 |
children | fc5296f44b7a |
files | gxine/receipt |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/gxine/receipt Mon May 18 19:09:23 2009 +0000 1.3 @@ -0,0 +1,43 @@ 1.4 +# SliTaz package receipt. 1.5 + 1.6 +PACKAGE="gxine" 1.7 +VERSION="0.5.904" 1.8 +CATEGORY="multimedia" 1.9 +SHORT_DESC="GTK+ Xine media player user interface." 1.10 +MAINTAINER="jozee@slitaz.org" 1.11 +DEPENDS="xine-lib libvorbis gtk+" 1.12 +BUILD_DEPENDS="firefox-dev xine-lib xine-lib-dev xorg-dev gtk+-dev hal dbus 1.13 +xorg-libXinerama xorg-libXext xorg-libX11 libiconv-dev libiconv" 1.14 +TARBALL="$PACKAGE-$VERSION.tar.bz2" 1.15 +WEB_SITE="http://www.xine-project.org" 1.16 +WGET_URL="http://switch.dl.sourceforge.net/sourceforge/xine/$TARBALL" 1.17 + 1.18 +# Rules to configure and make the package. 1.19 + 1.20 +compile_rules() 1.21 +{ 1.22 + cd $src 1.23 + export NSPR_LIBS="/usr/include/firefox" 1.24 + ./configure --prefix=/usr \ 1.25 + --mandir=/usr/share/man \ 1.26 + --sysconfdir=/etc \ 1.27 + --with-spidermonkey=/usr/include/js \ 1.28 + --without-browser-plugin \ 1.29 + --disable-lirc \ 1.30 + --disable-integration-wizard \ 1.31 + $CONFIGURE_ARGS && 1.32 + make && 1.33 + make DESTDIR=$PWD/_pkg install 1.34 +} 1.35 + 1.36 +# Rules to gen a SliTaz package suitable for Tazpkg. 1.37 +genpkg_rules() 1.38 +{ 1.39 + mkdir -p $fs/usr/share $fs/etc $fs/usr/lib 1.40 + cp -a $_pkg/usr/bin $fs/usr 1.41 + cp -a $_pkg/usr/lib/$PACKAGE $fs/usr/lib 1.42 + cp -a $_pkg/usr/share/$PACKAGE $fs/usr/share 1.43 + cp -a $_pkg/usr/share/pixmaps $fs/usr/share 1.44 + cp -a $_pkg/etc $fs 1.45 +} 1.46 +