wok diff 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 diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/meld/receipt	Thu Dec 16 17:16:06 2010 +0000
     1.3 @@ -0,0 +1,30 @@
     1.4 +# SliTaz package receipt.
     1.5 +
     1.6 +PACKAGE="meld"
     1.7 +VERSION="1.4.0"
     1.8 +CATEGORY="development"
     1.9 +SHORT_DESC="Visual diff and merge tool for GNOME."
    1.10 +MAINTAINER="slaxemulator@gmail.com"
    1.11 +DEPENDS="pygtk rarian"
    1.12 +BUILD_DEPENDS="pygtk-dev rarian-dev gnome-doc-utils intltool pkg-config util-linux-ng-getopt"
    1.13 +TARBALL="$PACKAGE-$VERSION.tar.bz2"
    1.14 +WEB_SITE="http://meld.sourceforge.net/"
    1.15 +WGET_URL="http://ftp.gnome.org/pub/gnome/sources/$PACKAGE/${VERSION%.*}/$TARBALL"
    1.16 +
    1.17 +# Rules to configure and make the package.
    1.18 +compile_rules()
    1.19 +{
    1.20 +	cd $src
    1.21 +	make prefix=/usr && make prefix=/usr DESTDIR=$PWD/_pkg install
    1.22 +}
    1.23 +
    1.24 +# Rules to gen a SliTaz package suitable for Tazpkg.
    1.25 +genpkg_rules()
    1.26 +{
    1.27 +	mkdir -p $fs/usr/share
    1.28 +	cp -a $_pkg/usr/bin $fs/usr
    1.29 +	cp -a $_pkg/usr/lib $fs/usr
    1.30 +	cp -a $_pkg/usr/share/applications $fs/usr/share
    1.31 +	cp -a $_pkg/usr/share/meld $fs/usr/share
    1.32 +}
    1.33 +