pkgsrc-wip/pipestatus/Makefile
Aleksey Cheusov 34bd6f9610 version -> 0.5.0
Major changes

    - 'check_status_re' and therefore 'runpipe_re' use 'grep -E'
      instead of 'grep' in order to simplify regexp that
      contains >=2 digit exit statuses.

      NOTE: Formally speaking this breaks backward compatibility.

    - If PIPESTATUS_VERBOSE variable is set to non-empty string, then
      check_status0 and check_status_re functions print an error
      message to stderr.
2008-05-04 21:22:48 +00:00

26 lines
650 B
Makefile

# $NetBSD: Makefile,v 1.3 2008/05/04 21:22:48 cheusov Exp $
#
DISTNAME= pipestatus-0.5.0
CATEGORIES= devel
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=pipestatus/}
MAINTAINER= cheusov@tut.by
HOMEPAGE= http://sourceforge.net/projects/pipestatus/
COMMENT= UNIX/POSIX shell helper for running pipes safely
PKG_DESTDIR_SUPPORT= user-destdir
NO_CONFIGURE= yes
NO_BUILD= yes
INSTALLATION_DIRS+= bin share/doc/pipestatus
DOCS= README NEWS
do-install:
${INSTALL_DATA} ${WRKSRC}/pipestatus ${DESTDIR}${PREFIX}/bin/
.for doc in ${DOCS}
${INSTALL_DATA} ${WRKSRC}/${doc} ${DESTDIR}${PREFIX}/share/doc/pipestatus/
.endfor
.include "../../mk/bsd.pkg.mk"