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 python 1.0 |
---|
5 | |
---|
6 | name py-simplekml |
---|
7 | version 1.3.6 |
---|
8 | revision 0 |
---|
9 | |
---|
10 | categories-append gis |
---|
11 | supported_archs noarch |
---|
12 | platforms {darwin any} |
---|
13 | license LGPL-3+ |
---|
14 | maintainers nomaintainer |
---|
15 | |
---|
16 | description A Simple KML creator |
---|
17 | long_description {*}${description} |
---|
18 | |
---|
19 | homepage https://readthedocs.org/projects/simplekml/ |
---|
20 | |
---|
21 | checksums rmd160 9455e10d40c8b53bdb20d92bd9d36746d9d1f2df \ |
---|
22 | sha256 cda687be2754395fcab664e908ebf589facd41e8436d233d2be37a69efb1c536 \ |
---|
23 | size 52999 |
---|
24 | |
---|
25 | python.versions 37 38 39 310 311 |
---|
26 | |
---|
27 | if {${name} ne ${subport}} { |
---|
28 | depends_build-append \ |
---|
29 | port:py${python.version}-setuptools |
---|
30 | |
---|
31 | post-destroot { |
---|
32 | set docdir ${prefix}/share/doc/${subport} |
---|
33 | xinstall -d ${destroot}${docdir} |
---|
34 | xinstall -m 0644 -W ${worksrcpath} README.md \ |
---|
35 | ${destroot}${docdir} |
---|
36 | } |
---|
37 | } |
---|