3291922106
Provided by NONAKA Kimihiro in PR 50504. Highway ------- A fast pattern matching tool like pt and ag. Feature: - It can search the PATTERN from your source code very fast. - It can search also the PATTERN as a regular expression. - It supports UTF-8 and some Japanese encodings (Because I'm Japanese. EUC-JP and Shift_JIS is supported). - It ignores file patterns form your .gitignore by default.
20 lines
536 B
Makefile
20 lines
536 B
Makefile
# $NetBSD: Makefile,v 1.1 2015/12/11 14:10:42 wiz Exp $
|
|
|
|
DISTNAME= highway-1.1.0
|
|
CATEGORIES= textproc
|
|
MASTER_SITES= ${MASTER_SITE_GITHUB:=tkengo/}
|
|
GITHUB_TAG= v${PKGVERSION_NOREV}
|
|
|
|
MAINTAINER= nonakap@gmail.com
|
|
HOMEPAGE= https://github.com/tkengo/highway
|
|
COMMENT= High performance source code search tool
|
|
LICENSE= mit
|
|
|
|
GNU_CONFIGURE= yes
|
|
USE_TOOLS+= autoconf automake autoreconf gmake
|
|
|
|
pre-configure:
|
|
cd ${WRKSRC} && ${MKDIR} config && autoreconf -fiv
|
|
|
|
.include "../../converters/libiconv/buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|