Changed changelog...
[dh-make-perl] / dev / i386 / libfile-chdir-perl / libfile-chdir-perl-0.06 / debian / control
1 Source: libfile-chdir-perl
2 Section: perl
3 Priority: optional
4 Build-Depends: debhelper (>= 4.0.2)
5 Build-Depends-Indep: perl (>= 5.8.0-7)
6 XSBC-Original-Maintainer: James Bromberger <jeb@debian.org>
7 Maintainer: Nito Martinez <Nito.ES>
8 Standards-Version: 3.7.2
9
10 Package: libfile-chdir-perl
11 Architecture: all
12 Depends: ${perl:Depends},
13 Description:  A more sensible way to change directories
14  Perl's chdir() has the unfortunate problem of being very, very, very 
15  global. If any part of your program calls chdir() or if any library you 
16  use calls chdir(), it changes the current working directory for the 
17  whole program. 
18  .
19  This sucks.
20  .
21  File::chdir gives you an alternative, $CWD and @CWD. These two variables 
22  combine all the power of chdir(), File::Spec and Cwd.