Matching Algorithm with Recursively Implemented StorAge (MARISA) is a static and space-efficient trie data structure. And libmarisa is a C++ library to provide an implementation of MARISA. Also, the package of libmarisa contains a set of command line tools for building and operating a MARISA-based dictionary. This package is python module for MARISA.
20 lines
461 B
Makefile
20 lines
461 B
Makefile
# $NetBSD: Makefile,v 1.1 2013/11/04 00:56:50 ishit Exp $
|
|
#
|
|
|
|
.include "../../wip/marisa/Makefile.common"
|
|
|
|
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
|
|
#CATEGORIES+= python
|
|
|
|
COMMENT= MARISA python module
|
|
|
|
USE_LANGUAGES= c c++
|
|
|
|
PYSETUPSUBDIR= bindings/python
|
|
|
|
#EGG_NAME= ${DISTNAME:S/-/_python-/}
|
|
|
|
BUILDLINK_API_DEPENDS.marisa+= marisa>=${PKGVERSION_NOREV}
|
|
.include "../../wip/marisa/buildlink3.mk"
|
|
.include "../../lang/python/distutils.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|