c24d272e35
Tokyo Dystopia is a full-text search system. You can search lots of records for some records including specified patterns. The characteristic of Tokyo Dystopia is the following. * High performance of search * High scalability of target documents * Perfect recall ratio by character N-gram method * Phrase matching, prefix matching, suffix matching, and token matching * Multilingualism with Unicode * Layered Architecture of APIs Tokyo Dystopia is available on platforms which have API conforming to C99 and POSIX. Tokyo Dystopia is a free software licensed under the GNU Lesser General Public License
23 lines
798 B
Makefile
23 lines
798 B
Makefile
# $NetBSD: buildlink3.mk,v 1.1.1.1 2008/09/04 12:21:20 obache Exp $
|
|
|
|
BUILDLINK_DEPTH:= ${BUILDLINK_DEPTH}+
|
|
TOKYODYSTOPIA_BUILDLINK3_MK:= ${TOKYODYSTOPIA_BUILDLINK3_MK}+
|
|
|
|
.if ${BUILDLINK_DEPTH} == "+"
|
|
BUILDLINK_DEPENDS+= tokyodystopia
|
|
.endif
|
|
|
|
BUILDLINK_PACKAGES:= ${BUILDLINK_PACKAGES:Ntokyodystopia}
|
|
BUILDLINK_PACKAGES+= tokyodystopia
|
|
BUILDLINK_ORDER:= ${BUILDLINK_ORDER} ${BUILDLINK_DEPTH}tokyodystopia
|
|
|
|
.if ${TOKYODYSTOPIA_BUILDLINK3_MK} == "+"
|
|
BUILDLINK_API_DEPENDS.tokyodystopia+= tokyodystopia>=0.9.5
|
|
BUILDLINK_PKGSRCDIR.tokyodystopia?= ../../textproc/tokyodystpia
|
|
.endif # TOKYODYSTOPIA_BUILDLINK3_MK
|
|
|
|
.include "../../databases/tokyocabinet/buildlink3.mk"
|
|
.include "../../devel/zlib/buildlink3.mk"
|
|
.include "../../archivers/bzip2/buildlink3.mk"
|
|
|
|
BUILDLINK_DEPTH:= ${BUILDLINK_DEPTH:S/+$//}
|