Add the original source packages to maemo, source lenny
[dh-make-perl] / dev / i386 / libfile-chdir-perl / libfile-chdir-perl-0.06 / debian / control
diff --git a/dev/i386/libfile-chdir-perl/libfile-chdir-perl-0.06/debian/control b/dev/i386/libfile-chdir-perl/libfile-chdir-perl-0.06/debian/control
new file mode 100644 (file)
index 0000000..7e47fee
--- /dev/null
@@ -0,0 +1,21 @@
+Source: libfile-chdir-perl
+Section: perl
+Priority: optional
+Build-Depends: debhelper (>= 4.0.2)
+Build-Depends-Indep: perl (>= 5.8.0-7)
+Maintainer: James Bromberger <jeb@debian.org>
+Standards-Version: 3.7.2
+
+Package: libfile-chdir-perl
+Architecture: all
+Depends: ${perl:Depends},
+Description:  A more sensible way to change directories
+ Perl's chdir() has the unfortunate problem of being very, very, very 
+ global. If any part of your program calls chdir() or if any library you 
+ use calls chdir(), it changes the current working directory for the 
+ whole program. 
+ .
+ This sucks.
+ .
+ File::chdir gives you an alternative, $CWD and @CWD. These two variables 
+ combine all the power of chdir(), File::Spec and Cwd.