File: control

package info (click to toggle)
libfile-find-wanted-perl 1.00-1.1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, trixie
  • size: 100 kB
  • sloc: perl: 68; makefile: 2
file content (21 lines) | stat: -rw-r--r-- 949 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
Source: libfile-find-wanted-perl
Section: perl
Priority: optional
Maintainer: Debian Perl Group <pkg-perl-maintainers@lists.alioth.debian.org>
Uploaders: Florian Schlichting <fschlich@zedat.fu-berlin.de>
Build-Depends: debhelper (>= 8)
Build-Depends-Indep: perl, libtest-pod-perl, libtest-pod-coverage-perl
Standards-Version: 3.9.3
Vcs-Browser: http://anonscm.debian.org/gitweb/?p=pkg-perl/packages/libfile-find-wanted-perl.git
Vcs-Git: git://git.debian.org/pkg-perl/packages/libfile-find-wanted-perl.git
Homepage: http://search.cpan.org/dist/File-Find-Wanted/

Package: libfile-find-wanted-perl
Architecture: all
Depends: ${misc:Depends}, ${perl:Depends}
Description: more obvious wrapper around File::Find
 File::Find::Wanted provides a find_wanted() function, which does what
 File::Find's find() does but in a more obvious way: To get a list of all
 files ending in .jpg, simply call
 .
    @files = find_wanted( sub { -f && /\.jpg$/ }, $dir );