File: Makefile.PL

package info (click to toggle)
libmodule-corelist-perl 2.36-1
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 916 kB
  • ctags: 11
  • sloc: perl: 18,387; sh: 9; makefile: 2
file content (18 lines) | stat: -rw-r--r-- 376 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
use ExtUtils::MakeMaker;

push @extra, 'INSTALLDIRS' => 'perl' if $] >= 5.008009;

WriteMakefile
(
    'NAME' => 'Module::CoreList',
    'VERSION_FROM' => 'lib/Module/CoreList.pm',
    'ABSTRACT_FROM' => 'lib/Module/CoreList.pm',
    'PREREQ_PM' => {
	'Test::More' => '0',
    },
    'EXE_FILES' => [ 'corelist' ],
    'PL_FILES' => {},
    LICENSE => 'perl',
    @extra,
)
;