File: Makefile.PL

package info (click to toggle)
libfile-find-rule-perl 0.34-4
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 216 kB
  • sloc: perl: 873; makefile: 2
file content (14 lines) | stat: -rw-r--r-- 373 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use strict;
use ExtUtils::MakeMaker;
WriteMakefile(
    'NAME'         => 'File::Find::Rule',
    'VERSION_FROM' => 'lib/File/Find/Rule.pm',
    'PREREQ_PM'    => {
        'File::Find'      => 0,
        'File::Spec'      => 0,
        'Number::Compare' => 0,
        'Text::Glob'      => '0.07',
        'Test::More'      => 0,
    },
    'EXE_FILES' => ['findrule'],
);