wok view meld/receipt @ rev 7674

Fixed linux. Need to make folder PWD/_pkg before adding bzImage to it. Also i'm force copying kernel config file now so we have the right config. It is copyed twice so its needed and doesn't hunt anything i think.
author Christopher Rogers <slaxemulator@gmail.com>
date Thu Dec 16 17:16:06 2010 +0000 (2010-12-16)
parents
children 73641efed1cc
line source
1 # SliTaz package receipt.
3 PACKAGE="meld"
4 VERSION="1.4.0"
5 CATEGORY="development"
6 SHORT_DESC="Visual diff and merge tool for GNOME."
7 MAINTAINER="slaxemulator@gmail.com"
8 DEPENDS="pygtk rarian"
9 BUILD_DEPENDS="pygtk-dev rarian-dev gnome-doc-utils intltool pkg-config util-linux-ng-getopt"
10 TARBALL="$PACKAGE-$VERSION.tar.bz2"
11 WEB_SITE="http://meld.sourceforge.net/"
12 WGET_URL="http://ftp.gnome.org/pub/gnome/sources/$PACKAGE/${VERSION%.*}/$TARBALL"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 make prefix=/usr && make prefix=/usr DESTDIR=$PWD/_pkg install
19 }
21 # Rules to gen a SliTaz package suitable for Tazpkg.
22 genpkg_rules()
23 {
24 mkdir -p $fs/usr/share
25 cp -a $_pkg/usr/bin $fs/usr
26 cp -a $_pkg/usr/lib $fs/usr
27 cp -a $_pkg/usr/share/applications $fs/usr/share
28 cp -a $_pkg/usr/share/meld $fs/usr/share
29 }