wok view gst-plugins-bad/receipt @ rev 8614

Fix: xfburn needs intltool to compile
author Antoine Bodin <gokhlayeh@slitaz.org>
date Mon Feb 14 18:33:51 2011 +0100 (2011-02-14)
parents 23e635893e0e
children f0e9833477fd
line source
1 # SliTaz package receipt.
3 PACKAGE="gst-plugins-bad"
4 VERSION="0.10.21"
5 CATEGORY="multimedia"
6 SHORT_DESC="GStreamer Bad Plugins"
7 MAINTAINER="jozee@slitaz.org"
8 DEPENDS="libxml2 gst-plugins-base bzlib flac libsdl libcomerr openssl libexif \
9 libkrb5 libmodplug libsndfile expat neon libcomerr3 faac faad2 libmms jasper \
10 mjpegtools"
11 BUILD_DEPENDS="pkg-config glib-dev gst-plugins-base gst-plugins-base-dev liboil-dev gstreamer-dev libxml2-dev libmodplug"
12 TARBALL="$PACKAGE-$VERSION.tar.bz2"
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 --prefix=/usr --sysconfdir=/etc --localstatedir=/var --enable-experimental &&
21 make -j 4 &&
22 make DESTDIR=$PWD/_pkg install
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 mkdir -p $fs/usr/lib
29 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
30 cp -a $_pkg/usr/lib/gstreamer* $fs/usr/lib
31 rm $fs/usr/lib/gstreamer*/*.*a
33 }