wok annotate gst-python/receipt @ rev 18558
btrfs-progs: update deps
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Sun Nov 08 14:25:50 2015 +0100 (2015-11-08) |
parents | dead8955c3ca |
children | a78610b2eb47 |
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" |
domcox@14484 | 10 WEB_SITE="http://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 } |