wok-stable view gst-plugins-bad/receipt @ rev 2674

Add everything for Gstreamer Framework
author Rohit Joshi <jozee@slitaz.org>
date Tue Apr 21 12:33:49 2009 +0000 (2009-04-21)
parents
children 0d01a129e9a6
line source
1 # SliTaz package receipt.
3 PACKAGE="gst-plugins-bad"
4 VERSION="0.10.11"
5 CATEGORY="multimedia"
6 SHORT_DESC="GStreamer Bad Plugins"
7 MAINTAINER="jozee@slitaz.org"
8 DEPENDS="libxml2 gst-plugins-base"
9 BUILD_DEPENDS="pkg-config gst-plugins-base gst-plugins-base-dev"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WEB_SITE="http://gstreamer.freedesktop.org/"
12 WGET_URL="$WEB_SITE/src/gst-plugins-bad/$TARBALL"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var --enable-experimental &&
19 make &&
20 make DESTDIR=$PWD/_pkg install
21 mkdir -p $PWD/_pkg/usr/bin/
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p $fs/usr/lib
28 cp -a $_pkg/usr/bin $fs/usr
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 }