wok-4.x view gst-plugins-bad/receipt @ rev 2682
Up: mpg123 (1.7.2) [security update]
author | Christophe Lincoln <pankso@slitaz.org> |
---|---|
date | Wed Apr 22 13:49:02 2009 +0200 (2009-04-22) |
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 }