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