wok annotate comix/receipt @ rev 4174

tazbb: sort cook list
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Sep 22 21:25:03 2009 +0200 (2009-09-22)
parents f9daff0cdbf9
children f7e96b8e3444
rev   line source
mallory@2333 1 # SliTaz package receipt.
mallory@2333 2
mallory@2333 3 PACKAGE="comix"
mallory@3176 4 VERSION="4.0.4"
mallory@2333 5 CATEGORY="graphics"
mallory@2333 6 SHORT_DESC="Comix is animage viewer, specifically designed to handle comic books."
mallory@2333 7 MAINTAINER="mallory@skyrock.com"
claudinei@3415 8 DEPENDS="python pygtk python-pil"
claudinei@3415 9 BUILD_DEPENDS="python pygtk-dev pygtk python-pil"
mallory@2333 10 TARBALL="$PACKAGE-$VERSION.tar.gz"
mallory@2333 11 WEB_SITE="http://comix.sourceforge.net"
mallory@2333 12 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
mallory@2333 13
mallory@2333 14 # Rules to configure and make the package.
mallory@2333 15 compile_rules()
mallory@2333 16 {
mallory@2333 17 cd $src
mallory@2333 18 mkdir -p _pkg/usr
mallory@2333 19 python install.py --no-mime --dir $PWD/_pkg/usr install
mallory@2333 20 }
mallory@2333 21
mallory@2333 22 # Rules to gen a SliTaz package suitable for Tazpkg.
mallory@2333 23 genpkg_rules()
mallory@2333 24 {
mallory@2333 25 mkdir -p $fs/usr
mallory@2333 26 cp -a $_pkg/usr/* $fs/usr/
mallory@2333 27 }
mallory@2333 28