wok annotate python-webdav/receipt @ rev 22802

freetype: add freetype-config
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Jan 28 09:23:39 2020 +0100 (2020-01-28)
parents 7390f8de9846
children 080c1dff8494
rev   line source
pascal@11727 1 # SliTaz package receipt.
pascal@11727 2
pascal@11727 3 PACKAGE="python-webdav"
pascal@11727 4 VERSION="0.5"
pascal@11727 5 CATEGORY="development"
pascal@11727 6 SHORT_DESC="A WebDAV client library for Python."
pascal@11727 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@15376 8 LICENSE="MIT"
pascal@11727 9 TARBALL="${PACKAGE}_$VERSION.tar.gz"
pascal@20421 10 WEB_SITE="https://sourceforge.net/projects/python-webdav/"
pascal@11727 11 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
pascal@11727 12
pascal@11727 13 DEPENDS="python"
pascal@11727 14 BUILD_DEPENDS="python-dev python"
pascal@11727 15
pascal@11727 16 # Rules to configure and make the package.
pascal@11727 17 compile_rules()
pascal@11727 18 {
pascal@11727 19 python setup.py build &&
pascal@11727 20 python setup.py install --root=$DESTDIR
pascal@11727 21 }
pascal@11727 22
pascal@11727 23 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@11727 24 genpkg_rules()
pascal@11727 25 {
pascal@11727 26 mkdir -p $fs
pascal@15376 27 cp -a $install/usr $fs
pascal@11727 28 }