e70b06020e
PStreams allows you to run another program from your C++ application and to transfer data between the two programs similar to shell pipelines. In the simplest case, a PStreams class is like a C++ wrapper for the POSIX.2 functions popen(3) and pclose(3), using C++ iostreams instead of C's stdio library.
23 lines
467 B
Makefile
23 lines
467 B
Makefile
# $NetBSD: Makefile,v 1.1.1.1 2011/10/29 10:39:31 ryoon Exp $
|
|
#
|
|
|
|
DISTNAME= pstreams-0.7.0
|
|
CATEGORIES= devel
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=pstreams/}
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= http://pstreams.sourceforge.net/
|
|
COMMENT= POSIX Process Control in C++
|
|
LICENSE= gnu-lgpl-v3
|
|
|
|
PKG_DESTDIR_SUPPORT= user-destdir
|
|
|
|
USE_LANGUAGES= c++
|
|
|
|
USE_TOOLS+= perl:build
|
|
|
|
INSTALL_MAKE_FLAGS= prefix=${PREFIX}
|
|
|
|
TEST_TARGET= test
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|