wok annotate gst-plugins-good/receipt @ rev 7768

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