wok annotate gst-plugins-ugly/receipt @ rev 2674

Add everything for Gstreamer Framework
author Rohit Joshi <jozee@slitaz.org>
date Tue Apr 21 12:33:49 2009 +0000 (2009-04-21)
parents
children 931d18e7b809
rev   line source
jozee@2674 1 # SliTaz package receipt.
jozee@2674 2
jozee@2674 3 PACKAGE="gst-plugins-ugly"
jozee@2674 4 VERSION="0.10.11"
jozee@2674 5 CATEGORY="multimedia"
jozee@2674 6 SHORT_DESC="GStreamer Bad Plugins"
jozee@2674 7 MAINTAINER="jozee@slitaz.org"
jozee@2674 8 DEPENDS="libxml2 gst-plugins-base"
jozee@2674 9 BUILD_DEPENDS="pkg-config gst-plugins-base gst-plugins-base-dev"
jozee@2674 10 TARBALL="$PACKAGE-$VERSION.tar.gz"
jozee@2674 11 WEB_SITE="http://gstreamer.freedesktop.org/"
jozee@2674 12 WGET_URL="$WEB_SITE/src/$PACKAGE/$TARBALL"
jozee@2674 13
jozee@2674 14 # Rules to configure and make the package.
jozee@2674 15 compile_rules()
jozee@2674 16 {
jozee@2674 17 cd $src
jozee@2674 18 ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var &&
jozee@2674 19 make &&
jozee@2674 20 make DESTDIR=$PWD/_pkg install
jozee@2674 21 mkdir -p $PWD/_pkg/usr/bin/
jozee@2674 22 }
jozee@2674 23
jozee@2674 24 # Rules to gen a SliTaz package suitable for Tazpkg.
jozee@2674 25 genpkg_rules()
jozee@2674 26 {
jozee@2674 27 mkdir -p $fs/usr/lib
jozee@2674 28 cp -a $_pkg/usr/bin $fs/usr
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 }