File: Build.PL

package info (click to toggle)
libfile-find-rule-perl 0.30-3
  • links: PTS, VCS
  • area: main
  • in suites: lenny
  • size: 116 kB
  • ctags: 27
  • sloc: perl: 609; makefile: 44
file content (18 lines) | stat: -rw-r--r-- 445 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
use strict;
use Module::Build;

Module::Build->new(
    module_name => "File::Find::Rule",
    license     => 'perl',
    script_files => [ 'findrule' ],
    requires    => {
        'Test::More'      => 0,
        'Number::Compare' => 0,
        'Text::Glob'      => 0,
        'File::Find'      => 0,
        'File::Spec'      => 0,
        'Cwd'             => 0,
    },
    create_makefile_pl => 'traditional',
   )
  ->create_build_script;