Ticket #53753: Portfile.2

File Portfile.2, 1.2 KB (added by 1-61803, 7 years ago)

python client

Line 
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
3PortSystem          1.0
4PortGroup           github 1.0
5PortGroup           python 1.0
6
7github.setup        tldr-pages tldr-python-client 0.3
8
9python.versions     27 33 34 35
10
11categories          sysutils
12platforms           darwin
13license             MIT
14maintainers         nomaintainer
15
16description         tldr python client - simplified and community-driven man pages
17long_description    The TLDR pages are a community effort to simplify \
18                    the beloved man pages with practical examples.
19
20homepage            http://tldr-pages.github.io
21
22checksums           rmd160  5ef592c9de21aad40ff1c204c239b46378c10788 \
23                    sha256  91881fb66ee297539e8e60c7b46bd56cd04a773aecfc7a42fb7f8fb6e9de1e28
24
25depends_build-append \
26                    port:py${python.version}-setuptools
27
28post-destroot {
29    set docdir ${prefix}/share/doc/${subport}
30    xinstall -d ${destroot}${docdir}/samples
31    xinstall -m 644 -W ${worksrcpath} \
32        LICENSE \
33        README.md \
34        ${destroot}${docdir}
35}
36
37notes "
38autocompletion file link
39"