freebsd-ports/textproc/codesearch/Makefile
Dmitri Goutnik 2e05b40e9f New port: textproc/codesearch
Code Search is a tool for indexing and then performing regular expression
searches over large bodies of source code. It is a set of command-line programs
written in Go.

WWW: https://github.com/google/codesearch

PR:		243273
Submitted by:	eborisch+FreeBSD@gmail.com
2020-01-17 19:00:02 +00:00

29 lines
474 B
Makefile

# $FreeBSD$
PORTNAME= codesearch
DISTVERSIONPREFIX= v
DISTVERSION= 1.1.0
CATEGORIES= textproc
MAINTAINER= eborisch@gmail.com
COMMENT= Fast (indexed) text search tool from Google
LICENSE= BSD3CLAUSE
LICENSE_FILE= ${WRKSRC}/LICENSE
USES= go
USE_GITHUB= yes
GH_ACCOUNT= google
GO_PKGNAME= github.com/google/codesearch
GO_TARGET= ./cmd/cgrep \
./cmd/cindex \
./cmd/csearch
CONFLICTS_INSTALL= hs-cgrep
PLIST_FILES= ${GO_TARGET:C/.\/cmd/bin/}
.include <bsd.port.mk>