wok-4.x view python-mygpoclient/receipt @ rev 6928
Up: elfutils to 0.149. Fixed it to build in clean chroot. Fixed it also to download sources with real wget by since sources are on https host. So now elfutils can download its sources just fine.
author | Christopher Rogers <slaxemulator@gmail.com> |
---|---|
date | Fri Oct 22 22:36:22 2010 +0000 (2010-10-22) |
parents | bd6154dc6735 |
children | 8ee7c7081850 |
line source
1 # SliTaz package receipt.
3 PACKAGE="python-mygpoclient"
4 SOURCE="mygpoclient"
5 VERSION="1.4"
6 CATEGORY="development"
7 SHORT_DESC="Python interface to the gpodder.net web services."
8 MAINTAINER="claudinei@slitaz.org"
9 DEPENDS="python python-simplejson"
10 BUILD_DEPENDS="python-dev"
11 TARBALL="$SOURCE-$VERSION.tar.gz"
12 WEB_SITE="http://thpinfo.com/2010/mygpoclient"
13 WGET_URL="$WEB_SITE/$TARBALL"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
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/lib $fs/usr
27 cp -a $_pkg/usr/bin $fs/usr
28 }