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.4 KiB
Tcl
41 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
|
|
PortGroup select 1.0
|
|
|
|
name py-pynacl
|
|
python.rootname pynacl
|
|
version 1.6.2
|
|
categories-append devel
|
|
license Apache-2
|
|
|
|
python.versions 310 311 312 313 314
|
|
|
|
maintainers {stromnov @stromnov} openmaintainer
|
|
|
|
description Python binding to the Networking and Cryptography (NaCl) library
|
|
long_description {*}${description}
|
|
|
|
homepage https://github.com/pyca/pynacl/
|
|
|
|
checksums rmd160 1d8eb9e821b7ec0f9f8c51c85577f436ab084b24 \
|
|
sha256 018494d6d696ae03c7e656e5e74cdfd8ea1326962cc401bcf018f1ed8436811c \
|
|
size 3511692
|
|
|
|
platform darwin 11 {
|
|
# default clang version cannot build this port, see https://trac.macports.org/ticket/54407
|
|
# llvm-gcc does build it, but this is undesirable due to standard library issues
|
|
# the following leads to a build with clang-3.4, which succeeds
|
|
compiler.blacklist-append clang *gcc*
|
|
}
|
|
|
|
if {${name} ne ${subport}} {
|
|
depends_lib-append port:py${python.version}-cffi \
|
|
port:py${python.version}-six \
|
|
port:libsodium
|
|
|
|
build.env-append SODIUM_INSTALL=system
|
|
destroot.env-append SODIUM_INSTALL=system
|
|
}
|