1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51
|
# $Id: /svn/trunk/debian/dists/libipc-run3-perl/debian/packages 2251 2006-11-13T11:15:51.088372Z dexter $
# If the debian/rules or debian/control file is missing, rebuild the file:
#
# $ yada rebuild control
# $ yada rebuild rules
# Environment variables:
# don't run `make test'
# with_no_test=%{with_no_test}
Source: libipc-run3-perl
Section: perl
Priority: extra
Maintainer: Piotr Roszatycki <dexter@debian.org>
Standards-Version: 3.7.2
Upstream-Source: <URL:http://www.cpan.org/pub/CPAN/modules/by-module/IPC/IPC-Run3-([0-9.]*)\.tar.gz>
Description: perl IPC::Run3 - Run a subprocess in batch mode
Copyright: .
Copyright 2003, R. Barrie Slaymaker, Jr., All Rights Reserved
.
You may use this module under the terms of the BSD, Artistic, or GPL licenses,
any version.
.
On any Debian system, you can find the complete text of these liceses
in the files located at /usr/share/common-licenses/
Build-Depends: perl (>= 5.8)
Build: sh
PERL=${PERL:-/usr/bin/perl}
$PERL Makefile.PL INSTALLDIRS=vendor
make
%if %{without_no_test}
make test
%endif
Clean: sh
test -f Makefile && touch Makefile && make distclean || true
Package: libipc-run3-perl
Architecture: all
Description: perl IPC::Run3 - Run a subprocess in batch mode
This module allows you to run a subprocess and redirect stdin, stdout,
and/or stderr to files and perl data structures. It aims to satisfy 99%
of the need for using system()/qx``/open3() with a simple, extremely
Perlish API and none of the bloat and rarely used features of IPC::Run.
Install: sh
PERL=${PERL:-/usr/bin/perl}
make install PREFIX=$ROOT/usr
yada install -doc -as changelog Changes
|