mirror of
https://github.com/macports/macports-ports.git
synced 2026-07-12 18:20:25 -07:00
See https://github.com/macports/macports-ports/pull/26909#issuecomment-3339115770
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 cmake 1.1
|
|
PortGroup github 1.0
|
|
|
|
github.setup greg7mdp parallel-hashmap 2.0.0 v
|
|
revision 0
|
|
categories devel
|
|
license Apache-2
|
|
# Do not set is as noarch until this issue is fixed:
|
|
# https://trac.macports.org/ticket/69317
|
|
# platforms any
|
|
# supported_archs noarch
|
|
maintainers nomaintainer
|
|
description A family of header-only, very fast and memory-friendly hashmap and btree containers
|
|
long_description {*}${description}
|
|
homepage https://greg7mdp.github.io/parallel-hashmap
|
|
checksums rmd160 a37046afe248c835966a3b66e5d242b5f3b8dd30 \
|
|
sha256 4f462f51a3468166ea4cf87c80e001dc1999093264cf55cbda3492ca39a7730b \
|
|
size 2059086
|
|
|
|
github.tarball_from archive
|
|
depends_build-append port:gtest
|
|
|
|
patchfiles gtest-patch.diff
|
|
|
|
compiler.cxx_standard 2014
|
|
compiler.thread_local_storage yes
|
|
|
|
configure.args-append -DPHMAP_INSTALL=ON \
|
|
-DPHMAP_BUILD_TESTS=ON \
|
|
-DPHMAP_BUILD_EXAMPLES=OFF
|
|
|
|
# https://github.com/greg7mdp/parallel-hashmap/issues/191
|
|
configure.cxxflags-append \
|
|
-I${worksrcpath}
|
|
|
|
test.run yes
|