wok view python-couchdbkit/receipt @ rev 4725

libbboost-dev: fix WGET_SOURCE
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Jan 05 16:19:03 2010 +0100 (2010-01-05)
parents 4658e349c18c
children 5921dc28d8c6
line source
1 # SliTaz package receipt.
3 PACKAGE="python-couchdbkit"
4 SOURCE="couchdbkit"
5 VERSION="0.3.1"
6 CATEGORY="development"
7 SHORT_DESC="A framework for python applications to access and manage CouchDB"
8 MAINTAINER="claudinei@slitaz.org"
9 DEPENDS="python couchdb python-simplejson python-restclient"
10 BUILD_DEPENDS="python python-dev setuptools"
11 TARBALL="$VERSION.gz"
12 WEB_SITE="http://www.couchdbkit.org"
13 WGET_URL="http://bitbucket.org/benoitc/$SOURCE/get/$TARBALL"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 src="$SOURCE"
19 cd $src
20 python setup.py install --root=$PWD/_pkg
21 }
23 # Rules to gen a SliTaz package suitable for Tazpkg.
24 genpkg_rules()
25 {
26 _pkg="$SOURCE/_pkg"
27 for file in `find $_pkg | grep 'pyc$'`; do
28 rm $file
29 done
30 mkdir -p $fs/usr
31 rm -f $_pkg/usr/lib/python2.5/site-packages/tests/*
32 rmdir $_pkg/usr/lib/python2.5/site-packages/tests
33 cp -a $_pkg/usr $fs
34 }