wok-next annotate gst0-python/receipt @ rev 20348

ploticus (2.42)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Nov 18 17:19:51 2017 +0100 (2017-11-18)
parents 0e8dadf052b9
children c3a368c0cddb
rev   line source
al@19816 1 # SliTaz package receipt.
al@19816 2
al@19816 3 PACKAGE="gst0-python"
al@19816 4 VERSION="0.10.21"
al@19816 5 CATEGORY="multimedia"
al@19816 6 SHORT_DESC="GStreamer Python Plugins"
al@19816 7 MAINTAINER="jozee@slitaz.org"
al@19816 8 LICENSE="LGPL2.1"
al@19816 9 TARBALL="gst-python-$VERSION.tar.bz2"
al@19816 10 WEB_SITE="http://gstreamer.freedesktop.org/"
al@19816 11 WGET_URL="$WEB_SITE/src/gst-python/$TARBALL"
al@19816 12
al@19816 13 DEPENDS="pygobject gstreamer0 gst0-plugins-base"
al@19816 14 BUILD_DEPENDS="pygobject-dev gstreamer0-dev gst0-plugins-base-dev libxml2-dev \
al@19816 15 python-dev pkg-config"
al@19816 16
al@19816 17 # Rules to configure and make the package.
al@19816 18 compile_rules()
al@19816 19 {
al@19816 20 ./configure --prefix=/usr \
al@19816 21 --sysconfdir=/etc \
al@19816 22 --localstatedir=/var \
al@19816 23 $CONFIGURE_ARGS &&
al@19816 24 make &&
al@19816 25 make DESTDIR=$DESTDIR install
al@19816 26 }
al@19816 27
al@19816 28 # Rules to gen a SliTaz package suitable for Tazpkg.
al@19816 29 genpkg_rules()
al@19816 30 {
al@19816 31 mkdir -p $fs/usr/lib $fs/usr/share
al@19826 32 cp -a $install/usr/share/gst-python $fs/usr/share
al@19816 33 cp -a $install/usr/lib/python* $fs/usr/lib
al@19816 34 }