wok annotate python-unidecode/receipt @ rev 22574

updated bzflag (2.4.0 -> 2.4.18)
author Hans-G?nter Theisgen
date Mon Jan 06 15:51:49 2020 +0100 (2020-01-06)
parents ef6ca97fc066
children cd6572046bf4
rev   line source
pascal@17912 1 # SliTaz package receipt.
pascal@17912 2
pascal@17912 3 PACKAGE="python-unidecode"
pascal@17912 4 VERSION="0.04.17"
pascal@17912 5 CATEGORY="development"
pascal@17912 6 SHORT_DESC="ASCII transliterations of Unicode text."
pascal@17912 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@17912 8 LICENSE="GPL2"
pascal@17912 9 SOURCE="Unidecode"
pascal@17912 10 TARBALL="$SOURCE-$VERSION.tar.gz"
pascal@17912 11 WEB_SITE="http://pypi.python.org/pypi/$SOURCE/$VERSION"
pascal@17912 12 WGET_URL="http://pypi.python.org/packages/source/${SOURCE:0:1}/$SOURCE/$TARBALL"
pascal@17912 13
pascal@17912 14 DEPENDS="python"
pascal@17912 15 BUILD_DEPENDS="python"
pascal@17912 16
pascal@17912 17 # Rules to configure and make the package.
pascal@17912 18 compile_rules()
pascal@17912 19 {
pascal@17912 20 python setup.py install --root=$DESTDIR
pascal@17912 21 }
pascal@17912 22
pascal@17912 23 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@17912 24 genpkg_rules()
pascal@17912 25 {
pascal@17912 26 cp -a $install/usr $fs
pascal@17912 27 }
al@18086 28