File: control

package info (click to toggle)
libfile-findlib-perl 0.001004-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 132 kB
  • sloc: perl: 280; makefile: 2
file content (34 lines) | stat: -rw-r--r-- 1,297 bytes parent folder | download
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
Source: libfile-findlib-perl
Maintainer: Debian Perl Group <pkg-perl-maintainers@lists.alioth.debian.org>
Uploaders: Mason James <mtj@kohaaloha.com>
Section: perl
Testsuite: autopkgtest-pkg-perl
Priority: optional
Build-Depends: debhelper-compat (= 13)
Build-Depends-Indep: perl
Standards-Version: 4.6.2
Vcs-Browser: https://salsa.debian.org/perl-team/modules/packages/libfile-findlib-perl
Vcs-Git: https://salsa.debian.org/perl-team/modules/packages/libfile-findlib-perl.git
Homepage: https://metacpan.org/release/File-FindLib
Rules-Requires-Root: no

Package: libfile-findlib-perl
Architecture: all
Depends: ${misc:Depends},
         ${perl:Depends}
Description: module to find and use a file/dir from a directory above your script file
 File::FindLib starts in the directory where your script (or library) is
 located and looks for the file or directory whose name you pass in. If it
 isn't found, then FindLib looks in the parent directory and continues moving
 up parent directories until it finds it or until there is not another parent
 directory.
 .
 If it finds the named path and it is a directory, then it prepends it to
 @INC. That is,
 .
   use File::FindLib 'lib';
 .
 is roughly equivalent to:
 .
   use File::Basename qw< dirname >;
   use lib dirname(__FILE__) . '/../../../lib';