File: Makefile.PL

package info (click to toggle)
liblogger-simple-perl 2.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 88 kB
  • sloc: perl: 105; makefile: 2
file content (16 lines) | stat: -rw-r--r-- 525 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
use ExtUtils::MakeMaker;
# See lib/ExtUtils/MakeMaker.pm for details of how to influence
# the contents of the Makefile that is written.
WriteMakefile(
    'NAME'		=> 'Logger::Simple',
    'VERSION_FROM'	=> 'Simple.pm', # finds $VERSION
    'PREREQ_PM'		=> {Carp => 0,
                            FileHandle => 0,
			    Fcntl => 0,
			    Time::HiRes => 0,
			    Test::More => 0,
			    Test::Harness => 0,
			    Test::Pod => 0,
                            Object::InsideOut => 0,
			    }, # e.g., Module::Name => 1.1
);