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 asciinema asciinema 1.4.0 v |
---|
8 | |
---|
9 | categories sysutils |
---|
10 | platforms darwin |
---|
11 | license GPL-3+ |
---|
12 | maintainers larryv |
---|
13 | |
---|
14 | description Record and share your terminal sessions, the right way |
---|
15 | long_description Forget screen recording apps and blurry video. \ |
---|
16 | Enjoy a lightweight, purely text based approach to \ |
---|
17 | terminal recording. asciinema is a free and open \ |
---|
18 | source solution for recording terminal sessions \ |
---|
19 | and sharing them on the web. |
---|
20 | |
---|
21 | homepage https://asciinema.org |
---|
22 | |
---|
23 | python.default_version \ |
---|
24 | 36 |
---|
25 | |
---|
26 | depends_lib port:py${python.version}-setuptools |
---|
27 | |
---|
28 | checksums rmd160 41c1a85478daef3304be1d308956ed63a3d2ba74 \ |
---|
29 | sha256 cafdfc422abb1df2f6dc3504d7f3b606ef18ea66a19b5a814342ee9ae40d0039 |
---|
30 | |
---|
31 | post-destroot { |
---|
32 | set docdir ${prefix}/share/doc/${subport} |
---|
33 | xinstall -d ${destroot}${docdir} |
---|
34 | xinstall -m 644 -W ${worksrcpath} \ |
---|
35 | CHANGELOG.md \ |
---|
36 | CONTRIBUTING.md \ |
---|
37 | LICENSE \ |
---|
38 | README.md \ |
---|
39 | doc/asciicast-v1.md \ |
---|
40 | ${destroot}${docdir} |
---|
41 | } |
---|
42 | |
---|
43 | livecheck.type regex |
---|
44 | livecheck.url ${github.homepage}/releases.atom |
---|
45 | livecheck.regex {<id>tag:github.com,2008:Repository/2823326/v(\d+(\.\d+)+)</id>} |
---|
46 | livecheck.version ${version} |
---|