File: Makefile.PL

package info (click to toggle)
libtest-unit-perl 0.29-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,308 kB
  • sloc: perl: 4,327; makefile: 5
file content (17 lines) | stat: -rw-r--r-- 493 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
use ExtUtils::MakeMaker;

# See lib/ExtUtils/MakeMaker.pm for details of how to influence
# the contents of the Makefile that is written.

require 5.005;

WriteMakefile(
    'NAME'         => 'Test::Unit',
    'VERSION_FROM' => 'lib/Test/Unit.pm', # finds $VERSION
    'PREREQ_PM'    => {
                       Class::Inner   => 0,
                       Devel::Symdump => 0,
                       Error          => 0,
                       base           => 1,
                      },
);