2016-04-23 12:46:02 +00:00
|
|
|
# -*- 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
|
|
|
|
|
|
|
|
|
|
PortSystem 1.0
|
|
|
|
|
PortGroup python 1.0
|
|
|
|
|
|
|
|
|
|
name py-blessed
|
2023-07-03 02:58:05 -04:00
|
|
|
version 1.20.0
|
2020-01-27 08:30:35 -05:00
|
|
|
revision 0
|
|
|
|
|
|
|
|
|
|
supported_archs noarch
|
2022-11-16 01:17:41 +11:00
|
|
|
platforms {darwin any}
|
2016-04-23 12:46:02 +00:00
|
|
|
license MIT
|
|
|
|
|
maintainers nomaintainer
|
|
|
|
|
|
|
|
|
|
description A thin practical wrapper around terminal styling screen positioning \
|
|
|
|
|
and keyboard input.
|
2024-12-22 21:24:30 -05:00
|
|
|
long_description {*}${description}
|
2016-04-23 12:46:02 +00:00
|
|
|
|
|
|
|
|
homepage https://github.com/jquast/blessed
|
|
|
|
|
|
2023-07-03 02:58:05 -04:00
|
|
|
checksums rmd160 714f301601b0bc3bea74b810f08399f6a18e348c \
|
|
|
|
|
sha256 2cdd67f8746e048f00df47a2880f4d6acbcdb399031b604e34ba8f71d5787680 \
|
|
|
|
|
size 6655612
|
2016-04-23 12:46:02 +00:00
|
|
|
|
2026-01-21 18:59:36 -06:00
|
|
|
python.versions 310 311 312 313 314
|
2016-04-23 12:46:02 +00:00
|
|
|
|
|
|
|
|
if {${name} ne ${subport}} {
|
2020-01-27 08:30:35 -05:00
|
|
|
depends_lib-append \
|
|
|
|
|
port:py${python.version}-six \
|
|
|
|
|
port:py${python.version}-wcwidth
|
|
|
|
|
|
2019-02-09 16:26:48 -05:00
|
|
|
post-destroot {
|
2020-01-27 08:30:35 -05:00
|
|
|
xinstall -d ${destroot}${prefix}/share/doc/${subport}/docs
|
2019-02-09 16:26:48 -05:00
|
|
|
xinstall -m 0644 -W ${worksrcpath} LICENSE README.rst \
|
|
|
|
|
${destroot}${prefix}/share/doc/${subport}
|
|
|
|
|
xinstall -m 0644 {*}[glob -types f ${worksrcpath}/docs/*] \
|
|
|
|
|
${destroot}${prefix}/share/doc/${subport}/docs
|
|
|
|
|
}
|
2016-04-23 12:46:02 +00:00
|
|
|
}
|