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