You've already forked macports-ports
mirror of
https://github.com/encounter/macports-ports.git
synced 2026-03-30 11:29:27 -07:00
1b659e4650
- use default PyPI livecheck - fix dependencies - update homepage - install files in post-destroot
43 lines
1.3 KiB
Tcl
43 lines
1.3 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-agate-sql
|
|
version 0.5.4
|
|
revision 0
|
|
|
|
platforms darwin
|
|
supported_archs noarch
|
|
license MIT
|
|
maintainers {gmail.com:esafak @esafak} openmaintainer
|
|
|
|
description agate-sql adds SQL read/write support to agate.
|
|
long_description ${description}
|
|
|
|
homepage https://agate-sql.readthedocs.org/
|
|
|
|
checksums rmd160 6f484916ab40531d651f43f6113b1ce2ea686676 \
|
|
sha256 9277490ba8b8e7c747a9ae3671f52fe486784b48d4a14e78ca197fb0e36f281b \
|
|
size 6340
|
|
|
|
python.versions 27 35 36 37
|
|
|
|
if {${name} ne ${subport}} {
|
|
depends_build-append \
|
|
port:py${python.version}-setuptools
|
|
|
|
depends_lib-append port:py${python.version}-agate \
|
|
port:py${python.version}-parsedatetime \
|
|
port:py${python.version}-sqlalchemy
|
|
|
|
post-destroot {
|
|
set docdir ${prefix}/share/doc/${subport}
|
|
xinstall -d ${destroot}${docdir}
|
|
xinstall -m 0644 -W ${worksrcpath} README.rst COPYING \
|
|
AUTHORS.rst ${destroot}${docdir}
|
|
}
|
|
|
|
livecheck.type none
|
|
}
|