wok view mitter/receipt @ rev 8615

Fix: replace exit 1 by return 1 in receipts (exit broke cook-list function)
author Antoine Bodin <gokhlayeh@slitaz.org>
date Mon Feb 14 19:09:46 2011 +0100 (2011-02-14)
parents 1f263185a0ec
children af9a1b47948c
line source
1 # SliTaz package receipt.
3 PACKAGE="mitter"
4 VERSION="0.4.5"
5 CATEGORY="network"
6 SHORT_DESC="Mitter is a client for Twitter."
7 MAINTAINER="claudinei@slitaz.org"
8 TARBALL="$PACKAGE-$VERSION.tar.gz"
9 WEB_SITE="http://code.google.com/p/mitter"
10 WGET_URL="http://mitter.googlecode.com/files/$TARBALL"
11 DEPENDS="python pygtk python-simplejson"
12 BUILD_DEPENDS="python-dev"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 python setup.py build
19 python setup.py install --root=$PWD/_pkg
20 }
22 # Rules to gen a SliTaz package suitable for Tazpkg.
23 genpkg_rules()
24 {
25 mkdir -p $fs/usr
26 cp -a $_pkg/usr $fs
27 }