wok-6.x annotate comix/receipt @ rev 15153
otf-gfs: typos
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Thu Aug 15 16:19:38 2013 +0000 (2013-08-15) |
parents | 11579844d239 |
children | 16df76e1fc6a |
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" |
pascal@14277 | 6 SHORT_DESC="Comix is an image viewer, specifically designed to handle comic books." |
pascal@14277 | 7 MAINTAINER="mallory@sweetpeople.org" |
pascal@15002 | 8 LICENSE="GPL2" |
mallory@2333 | 9 TARBALL="$PACKAGE-$VERSION.tar.gz" |
mallory@2333 | 10 WEB_SITE="http://comix.sourceforge.net" |
mallory@2333 | 11 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" |
jozee@4933 | 12 TAGS="viewer comic" |
mallory@2333 | 13 |
pascal@15002 | 14 DEPENDS="python pygtk python-pil rar" |
pascal@15002 | 15 BUILD_DEPENDS="python pygtk-dev pygtk python-pil unrar" |
pascal@15002 | 16 |
mallory@2333 | 17 # Rules to configure and make the package. |
mallory@2333 | 18 compile_rules() |
mallory@2333 | 19 { |
mallory@2333 | 20 cd $src |
pascal@15002 | 21 mkdir -p $DESTDIR/usr |
pascal@15002 | 22 python install.py --no-mime --dir $DESTDIR/usr install |
mallory@2333 | 23 } |
mallory@2333 | 24 |
mallory@2333 | 25 # Rules to gen a SliTaz package suitable for Tazpkg. |
mallory@2333 | 26 genpkg_rules() |
mallory@2333 | 27 { |
mallory@2333 | 28 mkdir -p $fs/usr |
pascal@15002 | 29 cp -a $install/usr/* $fs/usr/ |
mallory@2333 | 30 } |
mallory@2333 | 31 |