wok view meld/receipt @ rev 15000

Add some GPL2 licenses
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Aug 10 17:00:38 2013 +0000 (2013-08-10)
parents 11f4fc543f98
children 16df76e1fc6a
line source
1 # SliTaz package receipt.
3 PACKAGE="meld"
4 VERSION="1.6.0"
5 CATEGORY="development"
6 SHORT_DESC="Visual diff and merge tool for GNOME."
7 MAINTAINER="slaxemulator@gmail.com"
8 LICENSE="GPL2"
9 TARBALL="$PACKAGE-$VERSION.tar.xz"
10 WEB_SITE="http://meldmerge.org/"
11 WGET_URL="$GNOME_MIRROR/$PACKAGE/${VERSION:0:3}/$TARBALL"
13 DEPENDS="pygtk rarian"
14 BUILD_DEPENDS="pygtk-dev rarian-dev gnome-doc-utils intltool pkg-config util-linux-getopt"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 make prefix=/usr && make prefix=/usr DESTDIR=$DESTDIR install
21 }
23 # Rules to gen a SliTaz package suitable for Tazpkg.
24 genpkg_rules()
25 {
26 mkdir -p $fs/usr/share
27 cp -a $install/usr/bin $fs/usr
28 cp -a $install/usr/lib $fs/usr
29 cp -a $install/usr/share/meld $fs/usr/share
30 }