You've already forked macports-ports
mirror of
https://github.com/macports/macports-ports.git
synced 2026-07-12 18:20:25 -07:00
41 lines
1.3 KiB
Tcl
41 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-sparqlwrapper
|
|
python.rootname SPARQLWrapper
|
|
version 2.0.0
|
|
revision 0
|
|
|
|
categories-append devel databases
|
|
supported_archs noarch
|
|
platforms {darwin any}
|
|
license W3C
|
|
maintainers nomaintainer
|
|
|
|
description SPARQL Endpoint interface to Python
|
|
long_description This is a wrapper around a SPARQL service. It helps in \
|
|
creating the query URI and, possibly, convert the result \
|
|
into a more manageable format.
|
|
|
|
homepage https://rdflib.github.io/sparqlwrapper
|
|
|
|
checksums rmd160 1c1f3fc2aee804f94b96e5ceb3f521e18aed025c \
|
|
sha256 3fed3ebcc77617a4a74d2644b86fd88e0f32e7f7003ac7b2b334c026201731f1 \
|
|
size 98429
|
|
|
|
python.versions 313
|
|
|
|
if {${name} ne ${subport}} {
|
|
depends_run-append \
|
|
port:py${python.version}-rdflib
|
|
|
|
post-destroot {
|
|
set docdir ${prefix}/share/doc/${subport}
|
|
xinstall -d ${destroot}${docdir}
|
|
xinstall -m 0644 -W ${worksrcpath} README.rst MANAGEMENT.md \
|
|
LICENSE.txt ChangeLog.txt AUTHORS.md ${destroot}${docdir}
|
|
}
|
|
}
|