You've already forked macports-ports
mirror of
https://github.com/encounter/macports-ports.git
synced 2026-03-30 11:29:27 -07:00
49 lines
1.5 KiB
Tcl
49 lines
1.5 KiB
Tcl
# -*- 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-simplejson
|
|
version 3.17.2
|
|
revision 0
|
|
categories-append www
|
|
platforms darwin
|
|
license MIT
|
|
|
|
python.versions 27 35 36 37 38 39
|
|
|
|
maintainers {stromnov @stromnov} openmaintainer
|
|
|
|
description Simple, fast, extensible JSON encoder/decoder for Python
|
|
|
|
long_description simplejson is a simple, fast, complete, correct and \
|
|
extensible JSON encoder and decoder for Python 2.4+. \
|
|
It is pure Python code with no dependencies, but \
|
|
includes an optional C extension for a serious speed \
|
|
boost.
|
|
|
|
homepage http://simplejson.readthedocs.org/
|
|
|
|
checksums rmd160 4a65961d9731ad1574863ef758717bb2ae9a868e \
|
|
sha256 75ecc79f26d99222a084fbdd1ce5aad3ac3a8bd535cd9059528452da38b68841 \
|
|
size 83210
|
|
|
|
if {${name} ne ${subport}} {
|
|
post-destroot {
|
|
set docdir ${destroot}${prefix}/share/doc/${subport}
|
|
xinstall -d ${docdir}
|
|
xinstall -m 644 -W ${worksrcpath} \
|
|
CHANGES.txt README.rst index.rst \
|
|
${docdir}
|
|
}
|
|
|
|
pre-test {
|
|
test.env PYTHONPATH=[glob -nocomplain ${worksrcpath}/build/lib*]
|
|
|
|
}
|
|
|
|
test.run yes
|
|
|
|
livecheck.type none
|
|
}
|