You've already forked macports-ports
mirror of
https://github.com/macports/macports-ports.git
synced 2026-07-12 18:20:25 -07:00
40 lines
1.4 KiB
Tcl
40 lines
1.4 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-pkgconfig
|
|
version 1.6.0
|
|
revision 0
|
|
|
|
license MIT
|
|
maintainers nomaintainer
|
|
supported_archs noarch
|
|
platforms {darwin any}
|
|
|
|
description Python module to interface with pkg-config.
|
|
long_description {*}${description} It can be used to check if a package\
|
|
exists, check if a package meets certain version\
|
|
requirements, query CFLAGS and LDFLAGS, and parse the\
|
|
output to build extensions with setup.py.
|
|
|
|
homepage https://github.com/matze/pkgconfig
|
|
|
|
checksums rmd160 c3ddad41e513a79ae87ece2d8c84d01560f27a48 \
|
|
sha256 4a5a6631ce937fafac457104a40d558785a658bbdca5c49b6295bc3fd651907f \
|
|
size 5691
|
|
|
|
python.versions 310 311 312 313 314
|
|
python.pep517_backend poetry
|
|
|
|
if {${name} ne ${subport}} {
|
|
depends_run-append port:pkgconfig
|
|
|
|
post-destroot {
|
|
set DOCDIR ${destroot}${prefix}/share/doc/${subport}
|
|
xinstall -d ${DOCDIR}
|
|
xinstall -m 0644 -W ${worksrcpath} LICENSE README.rst \
|
|
${DOCDIR}
|
|
}
|
|
}
|