# HG changeset patch # User Christopher Rogers # Date 1291157748 0 # Node ID b63b71b8187f623390fcd69fe1538433653a8612 # Parent 4766de726ffe9071822454ef4b4bd3af5a37e457 Add meld. Visual diff and merge tool for GNOME. diff -r 4766de726ffe -r b63b71b8187f meld/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/meld/receipt Tue Nov 30 22:55:48 2010 +0000 @@ -0,0 +1,30 @@ +# SliTaz package receipt. + +PACKAGE="meld" +VERSION="1.4.0" +CATEGORY="development" +SHORT_DESC="Visual diff and merge tool for GNOME." +MAINTAINER="slaxemulator@gmail.com" +DEPENDS="pygtk rarian" +BUILD_DEPENDS="pygtk-dev rarian-dev gnome-doc-utils intltool pkg-config util-linux-ng-getopt" +TARBALL="$PACKAGE-$VERSION.tar.bz2" +WEB_SITE="http://meld.sourceforge.net/" +WGET_URL="http://ftp.gnome.org/pub/gnome/sources/$PACKAGE/${VERSION%.*}/$TARBALL" + +# Rules to configure and make the package. +compile_rules() +{ + cd $src + make prefix=/usr && make prefix=/usr DESTDIR=$PWD/_pkg install +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr/share + cp -a $_pkg/usr/bin $fs/usr + cp -a $_pkg/usr/lib $fs/usr + cp -a $_pkg/usr/share/applications $fs/usr/share + cp -a $_pkg/usr/share/meld $fs/usr/share +} +