wok annotate gst-plugins-bad/receipt @ rev 6757

Up: gst-plugins-bad to 0.10.20.
author Christopher Rogers <slaxemulator@gmail.com>
date Sun Oct 17 20:24:04 2010 +0000 (2010-10-17)
parents e4319b0b765a
children f19556aebbff
rev   line source
jozee@2674 1 # SliTaz package receipt.
jozee@2674 2
jozee@2674 3 PACKAGE="gst-plugins-bad"
slaxemulator@6757 4 VERSION="0.10.20"
jozee@2674 5 CATEGORY="multimedia"
jozee@2674 6 SHORT_DESC="GStreamer Bad Plugins"
jozee@2674 7 MAINTAINER="jozee@slitaz.org"
pankso@3425 8 DEPENDS="libxml2 gst-plugins-base bzlib flac libsdl libcomerr openssl libexif \
pascal@5029 9 libkrb5 libmodplug libsndfile expat neon libcomerr3 faac faad2 libmms jasper \
pascal@5029 10 mjpegtools"
jozee@2707 11 BUILD_DEPENDS="pkg-config glib-dev gst-plugins-base gst-plugins-base-dev liboil-dev gstreamer-dev libxml2-dev libmodplug"
slaxemulator@6757 12 TARBALL="$PACKAGE-$VERSION.tar.bz2"
jozee@2674 13 WEB_SITE="http://gstreamer.freedesktop.org/"
slaxemulator@6757 14 WGET_URL="$WEB_SITE/src/$PACKAGE/$TARBALL"
jozee@2674 15
jozee@2674 16 # Rules to configure and make the package.
jozee@2674 17 compile_rules()
jozee@2674 18 {
jozee@2674 19 cd $src
jozee@2674 20 ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var --enable-experimental &&
pascal@5784 21 make -j 4 &&
jozee@2695 22 make DESTDIR=$PWD/_pkg install
jozee@2674 23 }
jozee@2674 24
jozee@2674 25 # Rules to gen a SliTaz package suitable for Tazpkg.
jozee@2674 26 genpkg_rules()
jozee@2674 27 {
jozee@2674 28 mkdir -p $fs/usr/lib
jozee@2674 29 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
jozee@2674 30 cp -a $_pkg/usr/lib/gstreamer* $fs/usr/lib
jozee@2674 31 rm $fs/usr/lib/gstreamer*/*.*a
jozee@2674 32
jozee@2674 33 }