mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-31 05:41:08 +00:00
2e05b40e9f
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
29 lines
474 B
Makefile
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>
|