02024f47e1
The robin-map library is a C++ implementation of a fast hash map and hash set using open-addressing and linear robin hood hashing with backward shift deletion to resolve collisions.
16 lines
404 B
Makefile
16 lines
404 B
Makefile
# $NetBSD: Makefile,v 1.1 2021/01/18 12:01:10 nia Exp $
|
|
|
|
DISTNAME= robin-map-0.6.3
|
|
CATEGORIES= devel
|
|
MASTER_SITES= ${MASTER_SITE_GITHUB:=Tessil/}
|
|
GITHUB_TAG= v${PKGVERSION_NOREV}
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= https://github.com/Tessil/robin-map
|
|
COMMENT= C++ implementation of a fast hash map and hash set
|
|
LICENSE= mit
|
|
|
|
USE_CMAKE= yes
|
|
USE_LANGUAGES= c c++
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|