4ad2a9e408
Darts: Double-ARray Trie System This is a C++ template library that implements Double-Array [Aoe 1989]. Currently only Japanese documentation is provided. * [Aoe1989] Aoe, J. An Efficient Digital Search Algorithm by Using a Double-Array Structure. IEEE Transactions on Software Engineering. Vol. 15, 9 (Sep 1989). pp. 1066-1077. * [Datrie] Theppitak Karoonboonyanan An Implementation of Double-Array Triehttp://www.links.nectec.or.th/~thep/datrie/
36 lines
989 B
Makefile
36 lines
989 B
Makefile
# $NetBSD: Makefile,v 1.1.1.1 2004/05/06 13:22:43 taca Exp $
|
|
# $FreeBSD: ports/devel/darts/Makefile,v 1.2 2003/11/20 19:28:29 knu Exp $
|
|
#
|
|
|
|
DISTNAME= darts-0.2
|
|
CATEGORIES= devel
|
|
MASTER_SITES= http://chasen.org/~taku/software/darts/src/
|
|
|
|
MAINTAINER= tech-pkg@NetBSD.org
|
|
HOMEPAGE= http://chasen.org/~taku/software/darts/
|
|
COMMENT= C++ template library that implements Double-Array
|
|
|
|
GNU_CONFIGURE= yes
|
|
|
|
DOCDIR= ${PREFIX}/share/doc/darts
|
|
HTMLDOCDIR= ${PREFIX}/share/doc/html/darts
|
|
EXAMPLESDIR= ${PREFIX}/share/examples/darts
|
|
EXAMPLES= darts.cpp mkdarts.cpp
|
|
DOCS= AUTHORS ChangeLog README
|
|
HTMLDOCS= darts.css index.html
|
|
|
|
post-install:
|
|
${INSTALL_DATA_DIR} ${DOCDIR}
|
|
.for f in ${DOCS}
|
|
${INSTALL_DATA} ${WRKSRC}/${f} ${DOCDIR}
|
|
.endfor
|
|
${INSTALL_DATA_DIR} ${HTMLDOCDIR}
|
|
.for f in ${HTMLDOCS}
|
|
${INSTALL_DATA} ${WRKSRC}/doc/${f} ${HTMLDOCDIR}
|
|
.endfor
|
|
${INSTALL_DATA_DIR} ${EXAMPLESDIR}
|
|
.for f in ${EXAMPLES}
|
|
${INSTALL_DATA} ${WRKSRC}/${f} ${EXAMPLESDIR}
|
|
.endfor
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|