wok annotate turses/receipt @ rev 17526

Add jp2a
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Jan 19 00:23:49 2015 +0100 (2015-01-19)
parents dc91909434af
children 7390f8de9846
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@15601 8 LICENSE="GPL3"
pascal@13245 9 TARBALL="$PACKAGE-$VERSION.tar.gz"
pascal@13245 10 WEB_SITE="https://github.com/alejandrogomez/turses"
pascal@13245 11 WGET_URL="http://pypi.python.org/packages/source/t/$PACKAGE/$TARBALL"
pascal@13245 12
pascal@15601 13 DEPENDS="python setuptools python-httplib2 python-urwid python-oauth2 python-tweepy"
pascal@15601 14 BUILD_DEPENDS="python python-dev setuptools"
pascal@15601 15
pascal@13245 16 # Rules to configure and make the package.
pascal@13245 17 compile_rules()
pascal@13245 18 {
pascal@13245 19 cd $src
pascal@13245 20 python setup.py build
pascal@15601 21 python setup.py install --root=$DESTDIR
pascal@13245 22 }
pascal@13245 23
pascal@13245 24 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@13245 25 genpkg_rules()
pascal@13245 26 {
pascal@15601 27 cp -a $install/usr $fs
pascal@13245 28 }
pascal@13245 29