File: control

package info (click to toggle)
pstreams 1.0.3-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, sid, trixie
  • size: 420 kB
  • sloc: cpp: 2,172; makefile: 144; sh: 18
file content (22 lines) | stat: -rw-r--r-- 1,005 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Source: pstreams
Section: libdevel
Priority: optional
Maintainer: Eugene Seliverstov <theirix@gmail.com>
Build-Depends-Indep: debhelper (>= 12), doxygen, perl
Standards-Version: 4.5.1
Homepage: http://pstreams.sourceforge.net/
Vcs-Git: https://salsa.debian.org/theirix-guest/pstreams.git
Vcs-Browser: https://salsa.debian.org/theirix-guest/pstreams

Package: libpstreams-dev
Architecture: all
Multi-Arch: foreign
Depends: ${misc:Depends}, libjs-jquery
Description: C++ iostream interface to POSIX process I/O
 PStreams allows you to run another program from your C++ application and to
 transfer data between the two programs, similar to shell pipelines. The
 PStreams class works like a wrapper for the POSIX.2 functions popen(3) and
 pclose(3) (although it doesn't actually use them), using a C++ iostreams
 interface, instead of C's stdio library. Thus, PStreams makes it possible to
 run an external program and handle its stdin, stdout, and stderr just like you
 would handle any other C++ iostream.