Ticket #46905: Portfile

File Portfile, 1000 bytes (added by jfcaron3, 9 years ago)
Line 
1# -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:ft=tcl:et:sw=4:ts=4:sts=4
2# $Id$
3
4PortSystem          1.0
5PortGroup           python 1.0
6
7name                py-Unidecode
8version             0.04.17
9platforms           darwin
10license             GPL
11maintainers         nomaintainer
12
13description         ASCII transliterations of Unicode text
14long_description    ${description}
15
16homepage           
17master_sites        https://pypi.python.org/packages/source/U/Unidecode
18distname            Unidecode-0.04.17
19
20checksums           rmd160  d2eb1039b8b77728784d8b1bebe1a5bd998d1dfa \
21                    sha256  f0f8d53d39877da4849293d548eecb5e79364b573643296869dbc7f5b86709ef
22
23python.versions     25 26 27 32 33 34
24
25if {${name} ne ${subport}} {
26    depends_build-append \
27                        port:py${python.version}-setuptools
28
29    livecheck.type      none
30} else {
31    livecheck.type      regex
32    livecheck.url       ${master_sites}
33}