blob: c24549ce3fddbe9292f02bc2bbf2c74a5944db96 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
use ExtUtils::MakeMaker;
require 5.006;
WriteMakefile(
'NAME' => 'Time::Piece',
'VERSION_FROM' => 'Piece.pm', # finds $VERSION
'AUTHOR' => 'Matt Sergeant',
'ABSTRACT_FROM' => 'Piece.pm',
'INSTALLDIRS' => ( ($] >= 5.009005 and $] < 5.011) ? 'perl' : 'site'),
(eval { ExtUtils::MakeMaker->VERSION(6.21) } ? (LICENSE => 'perl') : ()),
);
|