wok annotate comix/receipt @ rev 5354
Fixed: apache by adding sed to build depends. libtool uses /usr/bin/sed.
author | Christopher Rogers <slaxemulator@gmail.com> |
---|---|
date | Wed Apr 28 16:36:12 2010 +0000 (2010-04-28) |
parents | 6a5553dfb1be |
children | 59b79ec33fec |
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" |
jozee@4933 | 13 TAGS="viewer comic" |
mallory@2333 | 14 |
mallory@2333 | 15 # Rules to configure and make the package. |
mallory@2333 | 16 compile_rules() |
mallory@2333 | 17 { |
mallory@2333 | 18 cd $src |
mallory@2333 | 19 mkdir -p _pkg/usr |
mallory@2333 | 20 python install.py --no-mime --dir $PWD/_pkg/usr install |
mallory@2333 | 21 } |
mallory@2333 | 22 |
mallory@2333 | 23 # Rules to gen a SliTaz package suitable for Tazpkg. |
mallory@2333 | 24 genpkg_rules() |
mallory@2333 | 25 { |
mallory@2333 | 26 mkdir -p $fs/usr |
mallory@2333 | 27 cp -a $_pkg/usr/* $fs/usr/ |
mallory@2333 | 28 } |
mallory@2333 | 29 |