freebsd-ports/devel/codequery/Makefile
Pawel Pekala c0595e7ea0 This is a tool to index, then query or search C, C++, Java, Python, Ruby, Go
and Javascript source code. It builds upon the databases of cscope and
Exuberant ctags. It can also work with Universal ctags, which is a drop-in
replacement for Exuberant ctags.

The databases of cscope and ctags would be processed by the cqmakedb tool
to generate the CodeQuery database file.

The CodeQuery database file can be viewed and queried using the codequery
GUI tool.

WWW: https://ruben2020.github.io/codequery/
2017-08-02 17:53:05 +00:00

33 lines
737 B
Makefile

# Created by: Pawel Pekala <pawel@FreeBSD.org>
# $FreeBSD$
PORTNAME= codequery
PORTVERSION= 0.21.0
DISTVERSIONPREFIX= v
CATEGORIES= devel
MAINTAINER= pawel@FreeBSD.org
COMMENT= Code understanding, browsing and search tool
LICENSE= MPL20 MIT
LICENSE_COMB= multi
LICENSE_FILE_MPL20= ${WRKSRC}/LICENSE.md
LICENSE_FILE_MIT= ${WRKSRC}/querylib/README.txt
USES= cmake ninja sqlite
USE_GITHUB= yes
GH_ACCOUNT= ruben2020
USE_QT4= linguisttools_build moc_build rcc_build uic_build \
corelib gui qmake xml
PLIST_FILES= bin/codequery \
bin/cqmakedb \
bin/cqsearch
DESKTOP_ENTRIES="CodeQuery" "" "" "${PORTNAME}" "Development;" ""
post-patch:
@${REINPLACE_CMD} 's,../build/gui/,,' ${WRKSRC}/gui/codequery.qrc
.include <bsd.port.mk>