diff options
author | jase <jase@FreeBSD.org> | 2012-10-07 06:37:54 +0800 |
---|---|---|
committer | jase <jase@FreeBSD.org> | 2012-10-07 06:37:54 +0800 |
commit | 0ddd6f1ac1c81a54d4c14f652892169ca5b96c2a (patch) | |
tree | 914ab2568ea2ee8d2ff71602d8598d7582b69f12 /textproc | |
parent | c542a5ab7ced5f977bd65b0129cfe910dda6fe22 (diff) | |
download | freebsd-ports-gnome-0ddd6f1ac1c81a54d4c14f652892169ca5b96c2a.tar.gz freebsd-ports-gnome-0ddd6f1ac1c81a54d4c14f652892169ca5b96c2a.tar.zst freebsd-ports-gnome-0ddd6f1ac1c81a54d4c14f652892169ca5b96c2a.zip |
the_silver_searcher is an attempt to make something better than ack,
which itself is better than grep.
WWW: https://github.com/ggreer/the_silver_searcher
PR: ports/172165
Submitted by: Gea-Suan Lin <gslin@gslin.org>
Approved by: flo, culot (mentors, implicit)
Diffstat (limited to 'textproc')
-rw-r--r-- | textproc/Makefile | 1 | ||||
-rw-r--r-- | textproc/the_silver_searcher/Makefile | 23 | ||||
-rw-r--r-- | textproc/the_silver_searcher/distinfo | 2 | ||||
-rw-r--r-- | textproc/the_silver_searcher/pkg-descr | 4 |
4 files changed, 30 insertions, 0 deletions
diff --git a/textproc/Makefile b/textproc/Makefile index 312bbd47e61d..e5b0ca8d5197 100644 --- a/textproc/Makefile +++ b/textproc/Makefile @@ -1393,6 +1393,7 @@ SUBDIR += texi2db SUBDIR += texi2html SUBDIR += textogif + SUBDIR += the_silver_searcher SUBDIR += ti-hunspell SUBDIR += tidyp SUBDIR += tinyxml diff --git a/textproc/the_silver_searcher/Makefile b/textproc/the_silver_searcher/Makefile new file mode 100644 index 000000000000..2c1414f62a5a --- /dev/null +++ b/textproc/the_silver_searcher/Makefile @@ -0,0 +1,23 @@ +# Created by: Gea-Suan Lin <gslin@gslin.org> +# $FreeBSD$ + +PORTNAME= the_silver_searcher +PORTVERSION= 0.12 +CATEGORIES= textproc +MASTER_SITES= http://cloud.github.com/downloads/ggreer/${PORTNAME}/ + +MAINTAINER= gslin@gslin.org +COMMENT= A code-searching tool similar to ack but faster + +LIB_DEPENDS= pcre:${PORTSDIR}/devel/pcre + +ACLOCAL_ARGS+= -I ${ACLOCAL_DIR} +AUTOMAKE_ARGS+= --add-missing +GNU_CONFIGURE= yes +PLIST_FILES= bin/ag +USE_AUTOTOOLS= aclocal autoconf autoheader automake +USE_PKGCONFIG= build + +MAN1= ag.1 + +.include <bsd.port.mk> diff --git a/textproc/the_silver_searcher/distinfo b/textproc/the_silver_searcher/distinfo new file mode 100644 index 000000000000..250ab17e25d1 --- /dev/null +++ b/textproc/the_silver_searcher/distinfo @@ -0,0 +1,2 @@ +SHA256 (the_silver_searcher-0.12.tar.gz) = 4225fff08334c63013a4932d64ba484ec201117aee6213d75e510082401a47cb +SIZE (the_silver_searcher-0.12.tar.gz) = 26300 diff --git a/textproc/the_silver_searcher/pkg-descr b/textproc/the_silver_searcher/pkg-descr new file mode 100644 index 000000000000..4bedfe5a65a0 --- /dev/null +++ b/textproc/the_silver_searcher/pkg-descr @@ -0,0 +1,4 @@ +An attempt to make something better than ack, which itself is better than +grep. + +WWW: https://github.com/ggreer/the_silver_searcher |