wok annotate gst-python/receipt @ rev 14484

gst-python: update deps+bdeps
author Dominique Corbex <domcox@slitaz.org>
date Thu May 02 22:48:39 2013 +0200 (2013-05-02)
parents 122b4ff7eb3a
children 76b72f1ad63c
rev   line source
jozee@2674 1 # SliTaz package receipt.
jozee@2674 2
jozee@2674 3 PACKAGE="gst-python"
slaxemulator@8416 4 VERSION="0.10.21"
jozee@2674 5 CATEGORY="multimedia"
jozee@2674 6 SHORT_DESC="GStreamer Python Plugins"
jozee@2674 7 MAINTAINER="jozee@slitaz.org"
slaxemulator@6869 8 TARBALL="$PACKAGE-$VERSION.tar.bz2"
domcox@14484 9 WEB_SITE="http://gstreamer.freedesktop.org/"
jozee@2674 10 WGET_URL="$WEB_SITE/src/$PACKAGE/$TARBALL"
jozee@2674 11
pascal@14043 12 DEPENDS="pygobject gstreamer gst-plugins-base"
domcox@14484 13 BUILD_DEPENDS="pygobject-dev gstreamer-dev gst-plugins-base-dev libxml2-dev
domcox@14484 14 python-dev pkg-config"
pascal@14043 15
jozee@2674 16 # Rules to configure and make the package.
jozee@2674 17 compile_rules()
jozee@2674 18 {
jozee@2674 19 cd $src
slaxemulator@11187 20 ./configure --prefix=/usr \
slaxemulator@11187 21 --sysconfdir=/etc \
slaxemulator@11187 22 --localstatedir=/var \
slaxemulator@11187 23 $CONFIGURE_ARGS &&
jozee@2674 24 make &&
slaxemulator@11187 25 make DESTDIR=$DESTDIR install
jozee@2674 26 }
jozee@2674 27
jozee@2674 28 # Rules to gen a SliTaz package suitable for Tazpkg.
jozee@2674 29 genpkg_rules()
jozee@2674 30 {
jozee@2674 31 mkdir -p $fs/usr/lib $fs/usr/share
pascal@14043 32 cp -a $install/usr/share/$PACKAGE $fs/usr/share
domcox@14484 33 cp -a $install/usr/lib/python* $fs/usr/lib
jozee@2674 34 }