7e47feef6ff675c268d8bb19c7bef3ccb3a82ef2
[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 Maintainer: James Bromberger <jeb@debian.org>
7 Standards-Version: 3.7.2
8
9 Package: libfile-chdir-perl
10 Architecture: all
11 Depends: ${perl:Depends},
12 Description:  A more sensible way to change directories
13  Perl's chdir() has the unfortunate problem of being very, very, very 
14  global. If any part of your program calls chdir() or if any library you 
15  use calls chdir(), it changes the current working directory for the 
16  whole program. 
17  .
18  This sucks.
19  .
20  File::chdir gives you an alternative, $CWD and @CWD. These two variables 
21  combine all the power of chdir(), File::Spec and Cwd.