Ticket #28641: Portfile

File Portfile, 1.2 KB (added by jls@…, 13 years ago)
Line 
1# -*- coding: utf-8; mode: tcl; tab-width: 4; truncate-lines: t; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:et:sw=4:ts=4:sts=4
2# $Id: Portfile 73249 2010-11-07 16:02:04Z alakazam@macports.org $
3
4PortSystem          1.0
5PortGroup           python27 1.0
6
7name                py27-south
8version             0.7.3
9categories-append   www
10platforms           darwin
11maintainers         nomaintainer
12homepage            http://south.aeracode.org/
13description         South provides intelligent schema migrations for Django apps
14long_description    South provides intelligent, database-independant, \
15                    semi-automatic, schema migrations for Django apps.
16
17master_sites        http://www.aeracode.org/releases/south/
18distname            south-${version}
19worksrcdir          south
20checksums           md5     693a2a7a57b29c49bc177fe951e04767 \
21                    sha1    f5a1e811f4c028874c7e617e7eba60d0a9e9dd71 \
22                    rmd160  4c0a56139905624480f6b18b3ee3d81a7a13cb29
23
24depends_lib-append  port:py27-distribute
25
26post-destroot   {
27    file copy ${worksrcpath}/docs ${destroot}${prefix}/share/doc/${name}/docs
28}
29
30livecheck.type      regex
31livecheck.url       ${homepage}
32livecheck.regex     "/wiki/ReleaseNotes/(0\.\[0-9\]+\.\[0-9\]+)"