import textproc/codesearch, ok semarie@

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.

For background and an overview of the commands, see
http://swtch.com/~rsc/regexp/regexp4.html.
This commit is contained in:
sthen 2020-06-07 08:06:42 +00:00
parent 0e4d138bc8
commit 2bded5f881
4 changed files with 37 additions and 0 deletions

View File

@ -0,0 +1,25 @@
# $OpenBSD: Makefile,v 1.1.1.1 2020/06/07 08:06:42 sthen Exp $
COMMENT= fast, indexed regexp search over large file trees
V= 1.2.0
MODGO_MODNAME= github.com/google/codesearch
MODGO_VERSION= v$V
DISTNAME= codesearch-v$V
PKGNAME= codesearch-$V
CATEGORIES= textproc devel
HOMEPAGE= https://github.com/google/codesearch
# BSD
PERMIT_PACKAGE= Yes
MAINTAINER= Stuart Henderson <sthen@openbsd.org>
MODULES= lang/go
NO_TEST= Yes
.include <bsd.port.mk>

View File

@ -0,0 +1,2 @@
SHA256 (codesearch-v1.2.0.zip) = yQ7wf1APT53ZQKExe1SVec4Fc0kvwc2+y8+67ebyJKo=
SIZE (codesearch-v1.2.0.zip) = 46372

View File

@ -0,0 +1,6 @@
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.
For background and an overview of the commands, see
http://swtch.com/~rsc/regexp/regexp4.html.

View File

@ -0,0 +1,4 @@
@comment $OpenBSD: PLIST,v 1.1.1.1 2020/06/07 08:06:42 sthen Exp $
@bin bin/cgrep
@bin bin/cindex
@bin bin/csearch