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 | |
---|
4 | PortSystem 1.0 |
---|
5 | PortGroup python26 1.0 |
---|
6 | |
---|
7 | name py26-simpy |
---|
8 | version 2.1.0 |
---|
9 | categories python |
---|
10 | maintainers mcalhoun |
---|
11 | platforms darwin freebsd |
---|
12 | description python based simulation language |
---|
13 | long_description \ |
---|
14 | SimPy is an object-oriented, process-based \ |
---|
15 | discrete-event simulation language based on standard Python. |
---|
16 | |
---|
17 | homepage http://simpy.sourceforge.net/ |
---|
18 | master_sites sourceforge:simpy |
---|
19 | distname SimPy-${version} |
---|
20 | checksums \ |
---|
21 | md5 94660fa24452ff8147353f9287f3a078 \ |
---|
22 | sha1 f26b3e6d3e4bfa404b5e0c72b2ea5e6b6ce54e6a \ |
---|
23 | rmd160 07da2d6f881b3029e5fb1db116ee30d12f654743 |
---|
24 | |
---|
25 | post-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 | |
---|
32 | livecheck.regex <title>simpy SimPy-(\\d+(?:\\.\\d+)*) released.*</title> |
---|