mirror of
https://git.freebsd.org/ports.git
synced 2025-06-01 10:56:27 -04:00
PGroonga is a PostgreSQL extension. PGroonga provides a new index access method that uses Groonga. Groonga is an embeddable super fast full text search engine. It can be embedded into MySQL. Mroonga is a storage engine that is based on Groonga. Groonga can also work as standalone search engine. PostgreSQL supports full text search against languages that use only alphabet and digit. It means that PostgreSQL doesn't support full text search against Japanese, Chinese and so on. You can use super fast full text search feature against all languages by installing PGroonga into your PostgreSQL! WWW: https://pgroonga.github.io/
27 lines
702 B
Makefile
27 lines
702 B
Makefile
# Created by: Muhammad Moinur Rahman <bofh@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= pgroonga
|
|
PORTVERSION= 2.0.1
|
|
CATEGORIES= databases textproc
|
|
MASTER_SITES= http://packages.groonga.org/source/pgroonga/
|
|
|
|
MAINTAINER= bofh@FreeBSD.org
|
|
COMMENT= Open-source fulltext search engine for PostGRESQL
|
|
|
|
LICENSE= PostgreSQL
|
|
|
|
LIB_DEPENDS= libgroonga.so:textproc/groonga
|
|
|
|
USES= gmake pgsql pkgconfig
|
|
SUB_FILES= pkg-message
|
|
|
|
OPTIONS_DEFINE= MECAB
|
|
MECAB_DESCRIBE= Use MeCab as a tokenizer
|
|
MECAB_BUILD_DEPENDS= mecab-ipadics>=0.996:japanese/mecab-ipadic
|
|
|
|
post-install:
|
|
${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/postgresql/pgroonga.so
|
|
${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/postgresql/pgroonga_check.so
|
|
|
|
.include <bsd.port.mk>
|