wok view python-webdav/receipt @ rev 16179

8086tiny: fix build for arm (no graphic dont build...)
author Christophe Lincoln <pankso@slitaz.org>
date Sun Mar 30 17:45:53 2014 +0200 (2014-03-30)
parents 9d082d25caea
children 7390f8de9846
line source
1 # SliTaz package receipt.
3 PACKAGE="python-webdav"
4 VERSION="0.5"
5 CATEGORY="development"
6 SHORT_DESC="A WebDAV client library for Python."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="MIT"
9 TARBALL="${PACKAGE}_$VERSION.tar.gz"
10 WEB_SITE="http://sourceforge.net/projects/python-webdav/"
11 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
13 DEPENDS="python"
14 BUILD_DEPENDS="python-dev python"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 python setup.py build &&
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
28 cp -a $install/usr $fs
29 }