wok view gst-plugins-base/receipt @ rev 2694

Fix: gst-plugins-base BUILD_DEPENDS
author Rohit Joshi <jozee@slitaz.org>
date Wed Apr 22 11:11:27 2009 +0000 (2009-04-22)
parents b69fa54df055
children 7cef8fc27566
line source
1 # SliTaz package receipt.
3 PACKAGE="gst-plugins-base"
4 VERSION="0.10.22"
5 CATEGORY="multimedia"
6 SHORT_DESC="GStreamer Base Plugins"
7 MAINTAINER="jozee@slitaz.org"
8 DEPENDS="libxml2 alsa-lib cdparanoia-III libvorbis libtheora gstreamer liboil libtheora-enc"
9 BUILD_DEPENDS="pkg-config glib-dev alsa-lib-dev liboil liboil-dev gstreamer gstreamer-dev libtheora-enc libtheora-dev libvorbis-dev cdparanoia-III-dev libxml2-dev"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WEB_SITE="http://gstreamer.freedesktop.org/"
12 WGET_URL="$WEB_SITE/src/gst-plugins-base/$TARBALL"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
19 --enable-experimental &&
20 make &&
21 make DESTDIR=$PWD/_pkg install
22 mkdir -p $PWD/_pkg/usr/bin/
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/bin $fs/usr
30 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
31 cp -a $_pkg/usr/lib/gstreamer* $fs/usr/lib
32 rm $fs/usr/lib/gstreamer*/*.*a
34 }