Add ARM files
[dh-make-perl] / dev / arm / libfile-chdir-perl / libfile-chdir-perl-0.06 / debian / libfile-chdir-perl / DEBIAN / control
diff --git a/dev/arm/libfile-chdir-perl/libfile-chdir-perl-0.06/debian/libfile-chdir-perl/DEBIAN/control b/dev/arm/libfile-chdir-perl/libfile-chdir-perl-0.06/debian/libfile-chdir-perl/DEBIAN/control
new file mode 100644 (file)
index 0000000..916338c
--- /dev/null
@@ -0,0 +1,18 @@
+Package: libfile-chdir-perl
+Version: 0.06-2.1
+Section: perl
+Priority: optional
+Architecture: all
+Depends: perl
+Installed-Size: 68
+Maintainer: James Bromberger <jeb@debian.org>
+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.