wok annotate turses/receipt @ rev 14222

Up cookutils (3.1.4) add AUFS_NOT_RAMFS support
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Mar 19 09:06:08 2013 +0100 (2013-03-19)
parents
children 23c3aed67cd9
rev   line source
pascal@13245 1 # SliTaz package receipt.
pascal@13245 2
pascal@13245 3 PACKAGE="turses"
pascal@13245 4 VERSION="0.2.7"
pascal@13245 5 CATEGORY="network"
pascal@13245 6 SHORT_DESC="A Twitter client for the console."
pascal@13245 7 MAINTAINER="paul@slitaz.org"
pascal@13245 8 DEPENDS="python setuptools python-httplib2 python-urwid python-oauth2 python-tweepy"
pascal@13245 9 BUILD_DEPENDS="python python-dev setuptools"
pascal@13245 10 TARBALL="$PACKAGE-$VERSION.tar.gz"
pascal@13245 11 WEB_SITE="https://github.com/alejandrogomez/turses"
pascal@13245 12 WGET_URL="http://pypi.python.org/packages/source/t/$PACKAGE/$TARBALL"
pascal@13245 13
pascal@13245 14 # Rules to configure and make the package.
pascal@13245 15 compile_rules()
pascal@13245 16 {
pascal@13245 17 cd $src
pascal@13245 18 python setup.py build
pascal@13245 19 python setup.py install --root=$PWD/_pkg
pascal@13245 20 }
pascal@13245 21
pascal@13245 22 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@13245 23 genpkg_rules()
pascal@13245 24 {
pascal@13245 25 cp -a $_pkg/usr $fs
pascal@13245 26 }
pascal@13245 27