wok annotate 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
rev   line source
slaxemulator@7465 1 # SliTaz package receipt.
slaxemulator@7465 2
slaxemulator@7465 3 PACKAGE="meld"
slaxemulator@7465 4 VERSION="1.4.0"
slaxemulator@7465 5 CATEGORY="development"
slaxemulator@7465 6 SHORT_DESC="Visual diff and merge tool for GNOME."
slaxemulator@7465 7 MAINTAINER="slaxemulator@gmail.com"
slaxemulator@7465 8 DEPENDS="pygtk rarian"
slaxemulator@7465 9 BUILD_DEPENDS="pygtk-dev rarian-dev gnome-doc-utils intltool pkg-config util-linux-ng-getopt"
slaxemulator@7465 10 TARBALL="$PACKAGE-$VERSION.tar.bz2"
slaxemulator@7465 11 WEB_SITE="http://meld.sourceforge.net/"
slaxemulator@7465 12 WGET_URL="http://ftp.gnome.org/pub/gnome/sources/$PACKAGE/${VERSION%.*}/$TARBALL"
slaxemulator@7465 13
slaxemulator@7465 14 # Rules to configure and make the package.
slaxemulator@7465 15 compile_rules()
slaxemulator@7465 16 {
slaxemulator@7465 17 cd $src
slaxemulator@7465 18 make prefix=/usr && make prefix=/usr DESTDIR=$PWD/_pkg install
slaxemulator@7465 19 }
slaxemulator@7465 20
slaxemulator@7465 21 # Rules to gen a SliTaz package suitable for Tazpkg.
slaxemulator@7465 22 genpkg_rules()
slaxemulator@7465 23 {
slaxemulator@7465 24 mkdir -p $fs/usr/share
slaxemulator@7465 25 cp -a $_pkg/usr/bin $fs/usr
slaxemulator@7465 26 cp -a $_pkg/usr/lib $fs/usr
slaxemulator@7465 27 cp -a $_pkg/usr/share/applications $fs/usr/share
slaxemulator@7465 28 cp -a $_pkg/usr/share/meld $fs/usr/share
slaxemulator@7465 29 }
slaxemulator@7465 30