wok diff comix/receipt @ rev 15774

Add TinyCM - A new content manager for SliTaz
author Christophe Lincoln <pankso@slitaz.org>
date Wed Jan 08 00:18:35 2014 +0100 (2014-01-08)
parents 11579844d239
children 16df76e1fc6a
line diff
     1.1 --- a/comix/receipt	Sat Apr 06 15:17:07 2013 +0200
     1.2 +++ b/comix/receipt	Wed Jan 08 00:18:35 2014 +0100
     1.3 @@ -5,25 +5,27 @@
     1.4  CATEGORY="graphics"
     1.5  SHORT_DESC="Comix is an image viewer, specifically designed to handle comic books."
     1.6  MAINTAINER="mallory@sweetpeople.org"
     1.7 -DEPENDS="python pygtk python-pil rar"
     1.8 -BUILD_DEPENDS="python pygtk-dev pygtk python-pil unrar"
     1.9 +LICENSE="GPL2"
    1.10  TARBALL="$PACKAGE-$VERSION.tar.gz"
    1.11  WEB_SITE="http://comix.sourceforge.net"
    1.12  WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
    1.13  TAGS="viewer comic"
    1.14  
    1.15 +DEPENDS="python pygtk python-pil rar"
    1.16 +BUILD_DEPENDS="python pygtk-dev pygtk python-pil unrar"
    1.17 +
    1.18  # Rules to configure and make the package.
    1.19  compile_rules()
    1.20  {
    1.21  	cd $src
    1.22 -	mkdir -p _pkg/usr
    1.23 -	python install.py --no-mime --dir $PWD/_pkg/usr install
    1.24 +	mkdir -p $DESTDIR/usr
    1.25 +	python install.py --no-mime --dir $DESTDIR/usr install
    1.26  }
    1.27  
    1.28  # Rules to gen a SliTaz package suitable for Tazpkg.
    1.29  genpkg_rules()
    1.30  {
    1.31  	mkdir -p $fs/usr
    1.32 -	cp -a $_pkg/usr/* $fs/usr/
    1.33 +	cp -a $install/usr/* $fs/usr/
    1.34  }
    1.35