File-Fingerprint-Huge

 view release on metacpan or  search on metacpan

Makefile.PL  view on Meta::CPAN

3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# the contents of the Makefile that is written.
WriteMakefile(
    'NAME'    => 'File::Fingerprint::Huge',
    'VERSION_FROM' => 'lib/File/Fingerprint/Huge.pm', # finds $VERSION
    'dist' => { COMPRESS => "gzip", SUFFIX=>"gz" },
    'PREREQ_PM' => {
                'Digest::CRC'           => '0.16',
                'Digest::MD5'           => '2.39',
                'Math::Random::MT'      => '1.10'
    },
    ($] ge '5.005')
        ? (
            'AUTHOR' => 'Colin Faber <cfaber@gmail.com>',
            'ABSTRACT' => 'Very large file high speed finger printing and checksuming',
           )
         : (),
     
);
 
sub MY::test {
  package MY;



( run in 0.457 second using v1.01-cache-2.11-cpan-a5abf4f5562 )