Ticket #25085: Portfile

File Portfile, 1015 bytes (added by mahergamal@…, 14 years ago)
Line 
1PortSystem      1.0
2PortGroup       python26 1.0
3
4name            py26-twill
5version         0.9
6categories      python devel
7platforms       darwin
8maintainers     mahergamal@gmail.com
9description     A simple scripting language for web browsing
10
11long_description \
12        twill is a simple language that allows users to browse the \
13        Web from a command-line interface. With twill, you can navigate \
14        through Web sites that use forms, cookies, and most standard Web \
15        features.
16
17homepage        http://twill.idyll.org/
18master_sites    http://darcs.idyll.org/~t/projects/
19distname        twill-${version}
20
21checksums       md5     c362307616696f4838e9456c42b70fdc \
22                sha1    a143e4085a330e43fb4b286e73d3a42ec76a3023 \
23                rmd160  fcc189d303de38d5e0427aedd371b8474fceca1c
24
25post-destroot {
26        foreach f {twill-fork twill-sh} {
27                file rename ${destroot}${prefix}/bin/${f}-2.6 \
28                            ${destroot}${prefix}/bin/${f}
29        }
30}
31