File: Makefile.PL

package info (click to toggle)
libmodule-corelist-perl 2.09-1
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 464 kB
  • ctags: 8
  • sloc: perl: 7,604; makefile: 45
file content (16 lines) | stat: -rw-r--r-- 304 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
use ExtUtils::MakeMaker;

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

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