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

Up: gst-plugins-good to 0.10.29. Add $CONFIGURE_ARGS.
author Christopher Rogers <slaxemulator@gmail.com>
date Fri May 20 15:49:42 2011 +0000 (2011-05-20)
parents ac2337e80c99
children 9dba33de3017
line source
1 # SliTaz package receipt.
3 PACKAGE="gst-plugins-good"
4 VERSION="0.10.29"
5 CATEGORY="multimedia"
6 SHORT_DESC="GStreamer Good Plugins"
7 MAINTAINER="jozee@slitaz.org"
8 TARBALL="$PACKAGE-$VERSION.tar.bz2"
9 WEB_SITE="http://gstreamer.freedesktop.org/"
10 WGET_URL="$WEB_SITE/src/$PACKAGE/$TARBALL"
12 DEPENDS="libxml2 gst-plugins-base gtk+ bzlib dbus flac hal libdv taglib \
13 xorg-libXcomposite xorg-libXcursor xorg-libXfixes xorg-libXinerama \
14 xorg-libXrandr xorg-libXrender GConf libsoup esound libavc1394 libiec61883 \
15 libv4l libtasn1 wavpack"
16 BUILD_DEPENDS="pkg-config gst-plugins-base gst-plugins-base-dev libogg-dev \
17 liboil-dev gstreamer-dev libxml2-dev glib-dev libjpeg jpeg-dev bzip2-dev \
18 wavpack-dev"
20 # Rules to configure and make the package.
21 compile_rules()
22 {
23 cd $src
24 sed -i 's/String::String/String/' ext/taglib/gstapev2mux.cc
25 ./configure \
26 --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
27 --enable-experimental --disable-static --disable-speex \
28 $CONFIGURE_ARGS &&
29 make -j 4 &&
30 make install
31 }
33 # Rules to gen a SliTaz package suitable for Tazpkg.
34 genpkg_rules()
35 {
36 mkdir -p $fs/usr/lib $fs/usr/share
37 cp -a $_pkg/usr/lib/gstreamer* $fs/usr/lib
38 cp -a $_pkg/usr/share/gstreamer* $fs/usr/share
39 rm $fs/usr/lib/gstreamer*/*.*a
41 }