pkgsrc/devel/R-fastmap/Makefile
mef c1c476d2d5 (devel/R-fastmap) import R-fastmap-1.1.0
Fast implementation of data structures, including a key-value store,
stack, and queue. Environments are commonly used as key-value stores
in R, but every time a new key is used, it is added to R's global
symbol table, causing a small amount of memory leakage. This can be
problematic in cases where many different keys are used. Fastmap
avoids this memory leak issue by implementing the map using data
structures in C++.
2021-05-31 22:22:32 +00:00

14 lines
304 B
Makefile

# $NetBSD: Makefile,v 1.1 2021/05/31 22:22:32 mef Exp $
R_PKGNAME= fastmap
R_PKGVER= 1.1.0
CATEGORIES= devel
MAINTAINER= pkgsrc-users@NetBSD.org
COMMENT= Fast Data Structures
LICENSE= mit # + file LICENSE
USE_LANGUAGES= c c++
.include "../../math/R/Makefile.extension"
.include "../../mk/bsd.pkg.mk"