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

add tacacs+
author Allan Pinto <allan316@gmail.com>
date Mon Jun 15 18:49:17 2009 +0000 (2009-06-15)
parents e8024c01fc47
children 9f19aee613be
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"
10 BUILD_DEPENDS="pkg-config glib-dev gst-plugins-base gst-plugins-base-dev liboil-dev gstreamer-dev libxml2-dev libmodplug"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WEB_SITE="http://gstreamer.freedesktop.org/"
13 WGET_URL="$WEB_SITE/src/gst-plugins-bad/$TARBALL"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var --enable-experimental &&
20 make &&
21 make DESTDIR=$PWD/_pkg install
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/lib/*.so* $fs/usr/lib
29 cp -a $_pkg/usr/lib/gstreamer* $fs/usr/lib
30 rm $fs/usr/lib/gstreamer*/*.*a
32 }