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 | |
---|
4 | PortSystem 1.0 |
---|
5 | PortGroup python26 1.0 |
---|
6 | |
---|
7 | name py26-python-twitter |
---|
8 | version 0.6 |
---|
9 | categories-append python |
---|
10 | maintainers aeppertATgmailDOTcom |
---|
11 | description A python wrapper around the Twitter API |
---|
12 | long_description ${description} |
---|
13 | |
---|
14 | platforms darwin |
---|
15 | |
---|
16 | homepage http://code.google.com/p/python-twitter |
---|
17 | master_sites http://python-twitter.googlecode.com/files/ |
---|
18 | distname python-twitter-${version} |
---|
19 | |
---|
20 | depends_lib port:py26-setuptools \ |
---|
21 | port:py26-simplejson |
---|
22 | |
---|
23 | checksums md5 e1f5c50c60c74944d29ce28178972b95 \ |
---|
24 | sha1 44e226ba59e32a15ce2f2ae6d38bc62a85d19e05 \ |
---|
25 | rmd160 1d813877cac653be4463f82b25eb7d95b8877e80 |
---|
26 | |
---|
27 | post-destroot { |
---|
28 | xinstall -m 644 -W ${worksrcpath} \ |
---|
29 | LICENSE \ |
---|
30 | ${destroot}${prefix}/share/doc/${name} |
---|
31 | foreach f [glob -directory ${worksrcpath}/doc *] { |
---|
32 | copy $f ${destroot}${prefix}/share/doc/${name}/[file tail $f] |
---|
33 | } |
---|
34 | } |
---|
35 | |
---|
36 | livecheck.type regex |
---|
37 | livecheck.url ${master_sites} |
---|
38 | livecheck.regex {python-twitter-([0-9.]+)\.tar\.gz} |
---|
39 | |
---|