wok annotate python-distribute/receipt @ rev 15378

Add some licenses
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Oct 19 13:53:26 2013 +0000 (2013-10-19)
parents aba18d5b7fbe
children 96be8cdaf5bf
rev   line source
slaxemulator@11402 1 # SliTaz package receipt.
slaxemulator@11402 2
slaxemulator@11402 3 PACKAGE="python-distribute"
slaxemulator@11402 4 VERSION="0.6.24"
slaxemulator@11402 5 CATEGORY="development"
slaxemulator@11402 6 SHORT_DESC="Easily build and distribute Python packages"
slaxemulator@11402 7 MAINTAINER="slaxemulator@gmail.com"
pascal@15378 8 LICENSE="PSL"
slaxemulator@11402 9 WEB_SITE="http://pypi.python.org/pypi/distribute"
slaxemulator@11402 10 SOURCE="distribute"
slaxemulator@11402 11 TARBALL="$SOURCE-$VERSION.tar.gz"
slaxemulator@11402 12 WGET_URL="http://pypi.python.org/packages/source/d/distribute/$TARBALL"
slaxemulator@11402 13
slaxemulator@11402 14 DEPENDS="python"
slaxemulator@11402 15 BUILD_DEPENDS="python-dev"
slaxemulator@11402 16
slaxemulator@11402 17 # Rules to configure and make the package.
slaxemulator@11402 18 compile_rules()
slaxemulator@11402 19 {
slaxemulator@11402 20 cd $src
slaxemulator@11402 21 python setup.py install --prefix=/usr --root=$DESTDIR
slaxemulator@11402 22 }
slaxemulator@11402 23
slaxemulator@11402 24 # Rules to gen a SliTaz package suitable for Tazpkg.
slaxemulator@11402 25 genpkg_rules()
slaxemulator@11402 26 {
slaxemulator@11402 27 cp -a $install/* $fs
slaxemulator@11402 28 }