Ticket #26056: Portfile

File Portfile, 1.0 KB (added by tcwan (TC Wan), 14 years ago)

py26-simpy Portfile

Line 
1# -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:et:sw=4:ts=4:sts=4
2# $Id: Portfile 44404 2008-12-28 00:39:35Z mcalhoun@macports.org $
3
4PortSystem 1.0
5PortGroup  python26 1.0
6
7name            py26-simpy
8version         2.1.0
9categories      python
10maintainers     mcalhoun
11platforms               darwin freebsd
12description             python based simulation language
13long_description \
14    SimPy is an object-oriented, process-based \
15    discrete-event simulation language based on standard Python.
16
17homepage        http://simpy.sourceforge.net/
18master_sites    sourceforge:simpy
19distname        SimPy-${version}
20checksums \
21    md5 94660fa24452ff8147353f9287f3a078 \
22    sha1 f26b3e6d3e4bfa404b5e0c72b2ea5e6b6ce54e6a \
23    rmd160 07da2d6f881b3029e5fb1db116ee30d12f654743
24
25post-destroot {
26        file copy ${worksrcpath}/SimPyDocs \
27        ${destroot}${prefix}/share/doc/${name}
28        file copy ${worksrcpath}/SimPyModels \
29                ${destroot}${prefix}/share/doc/${name}
30}
31
32livecheck.regex <title>simpy SimPy-(\\d+(?:\\.\\d+)*) released.*</title>