View | Details | Raw Unified | Return to bug 243273 | Differences between
and this patch

Collapse All | Expand All

(-)textproc/codeserch/Makefile (+28 lines)
Line 0 Link Here
1
# $FreeBSD$
2
3
PORTNAME=	codesearch
4
DISTVERSIONPREFIX=	v
5
DISTVERSION=	1.1.0
6
CATEGORIES=	textproc
7
8
MAINTAINER=	eborisch@gmail.com
9
COMMENT=	Fast (indexed) text search tool from Google
10
11
LICENSE=	BSD3CLAUSE
12
LICENSE_FILE=	${WRKSRC}/LICENSE
13
14
USES=		go
15
16
USE_GITHUB=	yes
17
GH_ACCOUNT=	google
18
19
GO_PKGNAME=	github.com/google/codesearch
20
GO_TARGET=	./cmd/cgrep \
21
		./cmd/cindex \
22
		./cmd/csearch
23
24
CONFLICTS_INSTALL=	cgrep
25
26
PLIST_FILES=	${GO_TARGET:C/.\/cmd/bin/}
27
28
.include <bsd.port.mk>
(-)textproc/codeserch/distinfo (+3 lines)
Line 0 Link Here
1
TIMESTAMP = 1578920429
2
SHA256 (google-codesearch-v1.1.0_GH0.tar.gz) = b177021d1da1ddfc333fcbfc679eadd62c8677a6ae6119f25c4ad6b912bcdd7e
3
SIZE (google-codesearch-v1.1.0_GH0.tar.gz) = 34076
(-)textproc/codeserch/pkg-descr (+5 lines)
Line 0 Link Here
1
Code Search is a tool for indexing and then performing regular expression
2
searches over large bodies of source code. It is a set of command-line programs
3
written in Go.
4
5
WWW: https://github.com/google/codesearch

Return to bug 243273