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

gamin: Reduce size with strip -s on libs (-68k)
author Christophe Lincoln <pankso@slitaz.org>
date Thu Apr 30 14:47:39 2009 +0200 (2009-04-30)
parents 931d18e7b809
children 543e5273625e
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"
9 BUILD_DEPENDS="pkg-config gst-plugins-base gst-plugins-base-dev libogg-dev liboil-dev gstreamer-dev libxml2-dev glib-dev jpeg-dev"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WEB_SITE="http://gstreamer.freedesktop.org/"
12 WGET_URL="$WEB_SITE/src/$PACKAGE/$TARBALL"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 ./configure \
19 --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
20 --enable-experimental --disable-static --disable-speex &&
21 make &&
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 $fs/usr/share
29 cp -a $_pkg/usr/lib/gstreamer* $fs/usr/lib
30 cp -a $_pkg/usr/share/gstreamer* $fs/usr/share
31 rm $fs/usr/lib/gstreamer*/*.*a
33 }