wok view gxine/receipt @ rev 4084

Add: blender (3D creation suite)
author Christophe Lincoln <pankso@slitaz.org>
date Wed Sep 16 00:12:26 2009 +0200 (2009-09-16)
parents 061284ddd265
children 9f19aee613be
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="spidermonkey-dev spidermonkey xine-lib xine-lib-dev xorg-dev \
10 gtk+-dev hal dbus xorg-libXinerama xorg-libXext xorg-libX11"
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 ./configure --prefix=/usr \
21 --mandir=/usr/share/man \
22 --sysconfdir=/etc \
23 --with-spidermonkey=/usr/include/js \
24 --without-browser-plugin \
25 --disable-lirc \
26 --disable-integration-wizard \
27 $CONFIGURE_ARGS &&
28 make &&
29 make DESTDIR=$PWD/_pkg install
30 }
32 # Rules to gen a SliTaz package suitable for Tazpkg.
33 genpkg_rules()
34 {
35 mkdir -p $fs/usr/share $fs/etc $fs/usr/lib
36 cp -a $_pkg/usr/bin $fs/usr
37 cp -a $_pkg/usr/lib/$PACKAGE $fs/usr/lib
38 cp -a $_pkg/usr/share/$PACKAGE $fs/usr/share
39 cp -a $_pkg/usr/share/pixmaps $fs/usr/share
40 cp -a $_pkg/etc $fs
41 }