wok view python-mygpoclient/receipt @ rev 17417

Add ttyrec
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed Dec 03 13:15:20 2014 +0100 (2014-12-03)
parents 8ee7c7081850
children 16df76e1fc6a
line source
1 # SliTaz package receipt.
3 PACKAGE="python-mygpoclient"
4 SOURCE="mygpoclient"
5 VERSION="1.5"
6 CATEGORY="development"
7 SHORT_DESC="Python interface to the gpodder.net web services."
8 MAINTAINER="claudinei@slitaz.org"
9 LICENSE="GPL3"
10 TARBALL="$SOURCE-$VERSION.tar.gz"
11 WEB_SITE="http://thpinfo.com/2010/mygpoclient"
12 WGET_URL="$WEB_SITE/$TARBALL"
14 DEPENDS="python python-simplejson"
15 BUILD_DEPENDS="python-dev"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 cd $src
21 python setup.py install --root=$DESTDIR
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p $fs/usr
28 cp -a $install/usr/lib $fs/usr
29 cp -a $install/usr/bin $fs/usr
30 }