wok diff gstreamer/receipt @ rev 5953
Up: exiftool 8.27
author | Antoine Bodin <gokhlayeh@mailoo.org> |
---|---|
date | Tue Aug 03 22:23:30 2010 +0200 (2010-08-03) |
parents | 782032535663 |
children | 1ca2a873ae2a |
line diff
1.1 --- a/gstreamer/receipt Fri May 01 17:16:06 2009 +0200 1.2 +++ b/gstreamer/receipt Tue Aug 03 22:23:30 2010 +0200 1.3 @@ -1,24 +1,28 @@ 1.4 # SliTaz package receipt. 1.5 1.6 PACKAGE="gstreamer" 1.7 -VERSION="0.10.22" 1.8 +VERSION="0.10.24" 1.9 CATEGORY="multimedia" 1.10 SHORT_DESC="GStreamer Multimedia Framework" 1.11 MAINTAINER="jozee@slitaz.org" 1.12 DEPENDS="libxml2 glib" 1.13 -BUILD_DEPENDS="intltool pkg-config bison flex glib-dev libxml2-dev python python-dev m4" 1.14 +BUILD_DEPENDS="intltool pkg-config bison flex glib-dev libxml2-dev python 1.15 +python-dev m4" 1.16 TARBALL="$PACKAGE-$VERSION.tar.bz2" 1.17 -WEB_SITE="http://gstreamer.freedesktop.org/" 1.18 +WEB_SITE="http://gstreamer.freedesktop.org/" 1.19 WGET_URL="$WEB_SITE/src/gstreamer/$TARBALL" 1.20 1.21 # Rules to configure and make the package. 1.22 compile_rules() 1.23 { 1.24 cd $src 1.25 - ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \ 1.26 - --disable-docs-build && 1.27 + ./configure \ 1.28 + --prefix=/usr \ 1.29 + --sysconfdir=/etc \ 1.30 + --localstatedir=/var \ 1.31 + --disable-docs-build && 1.32 make && 1.33 - make DESTDIR=$PWD/_pkg install 1.34 + make DESTDIR=$PWD/_pkg install 1.35 } 1.36 1.37 # Rules to gen a SliTaz package suitable for Tazpkg. 1.38 @@ -28,5 +32,4 @@ 1.39 cp -a $_pkg/usr/bin $fs/usr 1.40 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib 1.41 cp -a $_pkg/usr/lib/gstreamer* $fs/usr/lib 1.42 - 1.43 }