wok view gst-python/receipt @ rev 13316

syslinux: typo
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Aug 30 08:52:08 2012 +0200 (2012-08-30)
parents e6caf76b997d
children f1f0f4bab8de
line source
1 # SliTaz package receipt.
3 PACKAGE="gst-python"
4 VERSION="0.10.21"
5 CATEGORY="multimedia"
6 SHORT_DESC="GStreamer Python Plugins"
7 MAINTAINER="jozee@slitaz.org"
8 DEPENDS="pygobject gstreamer gst-plugins-base"
9 BUILD_DEPENDS="pygobject-dev gstreamer gstreamer-dev libxml2-dev liboil-dev python-dev glib-dev gst-plugins-base-dev pkg-config"
10 TARBALL="$PACKAGE-$VERSION.tar.bz2"
11 WEB_SITE="http://gstreamer.freedesktop.org/"
12 WGET_URL="$WEB_SITE/src/$PACKAGE/$TARBALL"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 ./configure --prefix=/usr \
19 --sysconfdir=/etc \
20 --localstatedir=/var \
21 $CONFIGURE_ARGS &&
22 make &&
23 make DESTDIR=$DESTDIR install
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 mkdir -p $fs/usr/lib $fs/usr/share
30 cp -a $_pkg/usr/share/$PACKAGE $fs/usr/share
31 cp -a $_pkg/usr/lib/python* $fs/usr/lib
33 }