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

Up: sqlite, sqlite-dev, lemon to 3.7.3. Made so lemon compiles itself when genpkg only so the patch in compile_rules gets though. Otherwize it will be from sqlite directly without patch and bigger by 8kb or corrupted package with nothing in it since sqlite- will not exist in /lemon.
author Christopher Rogers <slaxemulator@gmail.com>
date Fri Oct 08 16:36:42 2010 +0000 (2010-10-08)
parents 116602ef2d27
children 23e635893e0e
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 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.gz"
13 WEB_SITE="http://gstreamer.freedesktop.org/"
14 WGET_URL="$WEB_SITE/src/gst-plugins-bad/$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 }