You've already forked macports-ports
mirror of
https://github.com/encounter/macports-ports.git
synced 2026-03-30 11:29:27 -07:00
ca97288531
- update master_sites - modernize checksums
44 lines
1.6 KiB
Tcl
44 lines
1.6 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
|
|
PortGroup deprecated 1.0
|
|
|
|
name py-htmltemplate
|
|
version 1.5.0
|
|
|
|
categories-append textproc
|
|
platforms darwin
|
|
supported_archs noarch
|
|
license MIT
|
|
maintainers nomaintainer
|
|
|
|
description HTML template engine for python
|
|
long_description HTMLTemplate converts HTML/XHTML templates into simple \
|
|
Python object models that can be manipulated through \
|
|
callback functions in your scripts.
|
|
|
|
homepage http://freespace.virgin.net/hamish.sanderson/htmltemplate.html
|
|
master_sites macports_distfiles
|
|
distname HTMLTemplate-${version}
|
|
|
|
checksums md5 c6f3f9d00373319df1ddb4b94327d0a7 \
|
|
sha1 e538e19074df19a171ff873e115e01d69ed32464 \
|
|
rmd160 27647bdf7e2d3511169d83afc3ee31d950536ccb \
|
|
sha256 070e6a5ef039e516eacb1f337da4a83342123a9f6e7a8ffbe3a209022568be3f \
|
|
size 56432
|
|
|
|
deprecated.upstream_support no
|
|
livecheck.type none
|
|
python.versions 27
|
|
|
|
if {${name} ne ${subport}} {
|
|
post-destroot {
|
|
xinstall -m 0644 {*}[glob ${worksrcpath}/doc/*] \
|
|
${destroot}${prefix}/share/doc/${subport}
|
|
xinstall -m 0755 -d ${destroot}${prefix}/share/examples/${subport}
|
|
xinstall -m 0644 {*}[glob ${worksrcpath}/sample/*] \
|
|
${destroot}${prefix}/share/examples/${subport}
|
|
}
|
|
}
|