mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-14 23:46:10 +00:00
2d15f8c368
sgrep (structured grep) is a tool for searching text files and filtering text streams using structural criteria. The data model of sgrep is based on regions, which are non- empty substrings of text. Regions are typically occur- rences of constant strings or meaningful text elements, which are recognizable through some delimiting strings. PR: 6449 Submitted by: A Joseph Koshy <koshy@india.hp.com>
24 lines
570 B
Makefile
24 lines
570 B
Makefile
# New ports collection makefile for: sgrep
|
|
# Version required: 0.99
|
|
# Date created: Apr 29 1998
|
|
# Whom: <koshy@india.hp.com>
|
|
#
|
|
# $Id$
|
|
#
|
|
|
|
DISTNAME= sgrep-0.99
|
|
CATEGORIES= textproc
|
|
MASTER_SITES= ftp://ftp.cs.helsinki.fi/pub/Software/Local/Sgrep/
|
|
|
|
MAINTAINER= koshy@india.hp.com
|
|
|
|
MAN1= sgrep.1
|
|
|
|
# Override the install target in the supplied makefile
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/sgrep ${PREFIX}/bin
|
|
${INSTALL_MAN} ${WRKSRC}/sgrep.1 ${MANPREFIX}/man/man1
|
|
${INSTALL_DATA} ${WRKSRC}/sample.sgreprc ${PREFIX}/share/sgreprc
|
|
|
|
.include <bsd.port.mk>
|