wok view gst-plugins-good/receipt @ rev 4423

Add clutter (UI tool kit) with cairo and gtk bindings
author Christophe Lincoln <pankso@slitaz.org>
date Sun Oct 25 17:31:52 2009 +0100 (2009-10-25)
parents 957267380153
children 9f19aee613be
line source
1 # SliTaz package receipt.
3 PACKAGE="gst-plugins-good"
4 VERSION="0.10.14"
5 CATEGORY="multimedia"
6 SHORT_DESC="GStreamer Good Plugins"
7 MAINTAINER="jozee@slitaz.org"
8 DEPENDS="libxml2 gst-plugins-base gtk+ bzlib dbus flac hal libdv taglib \
9 xorg-libXcomposite xorg-libXcursor xorg-libXfixes xorg-libXinerama \
10 xorg-libXrandr xorg-libXrender"
11 BUILD_DEPENDS="pkg-config gst-plugins-base gst-plugins-base-dev libogg-dev liboil-dev gstreamer-dev libxml2-dev glib-dev jpeg-dev"
12 TARBALL="$PACKAGE-$VERSION.tar.gz"
13 WEB_SITE="http://gstreamer.freedesktop.org/"
14 WGET_URL="$WEB_SITE/src/$PACKAGE/$TARBALL"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 ./configure \
21 --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
22 --enable-experimental --disable-static --disable-speex &&
23 make &&
24 make DESTDIR=$PWD/_pkg install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 mkdir -p $fs/usr/lib $fs/usr/share
31 cp -a $_pkg/usr/lib/gstreamer* $fs/usr/lib
32 cp -a $_pkg/usr/share/gstreamer* $fs/usr/share
33 rm $fs/usr/lib/gstreamer*/*.*a
35 }