wok annotate gst-python/receipt @ rev 21173

updated libestr and libestr-dev (0.1.10 -> 0.1.11)
author Hans-G?nter Theisgen
date Mon Apr 01 16:14:06 2019 +0100 (2019-04-01)
parents 16df76e1fc6a
children 3cdc90c472a2
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"
pascal@14996 8 LICENSE="LGPL2.1"
slaxemulator@6869 9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
pascal@20669 10 WEB_SITE="https://gstreamer.freedesktop.org/"
jozee@2674 11 WGET_URL="$WEB_SITE/src/$PACKAGE/$TARBALL"
jozee@2674 12
pascal@14043 13 DEPENDS="pygobject gstreamer gst-plugins-base"
al@18077 14 BUILD_DEPENDS="pygobject-dev gstreamer-dev gst-plugins-base-dev libxml2-dev \
domcox@14484 15 python-dev pkg-config"
pascal@14043 16
jozee@2674 17 # Rules to configure and make the package.
jozee@2674 18 compile_rules()
jozee@2674 19 {
slaxemulator@11187 20 ./configure --prefix=/usr \
slaxemulator@11187 21 --sysconfdir=/etc \
slaxemulator@11187 22 --localstatedir=/var \
pascal@15265 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 }