1
|
1 use 5.008;
|
|
2 use ExtUtils::MakeMaker;
|
|
3 # See lib/ExtUtils/MakeMaker.pm for details of how to influence
|
|
4 # the contents of the Makefile that is written.
|
|
5 WriteMakefile(
|
|
6 'NAME' => 'Calcon',
|
|
7 'VERSION_FROM' => 'Calcon.pm', # finds $VERSION
|
|
8 'PREREQ_PM' => {
|
|
9 'NKF'=>2.0,
|
6
|
10 'Mac::AppleScript'=>0.03,
|
1
|
11 }, # e.g., Module::Name => 1.1
|
|
12 ($] >= 5.005 ? ## Add these new keywords supported since 5.005
|
6
|
13 ( # ABSTRACT_FROM => 'Calcon.pm', # retrieve abstract from module
|
1
|
14 AUTHOR => 'Shinji KONO <kono@ie.u-ryukyu.ac.jp>') : ()),
|
|
15 );
|