annotate Makefile.PL @ 6:714230f2d8b3

*** empty log message ***
author kono
date Sat, 25 Jan 2003 15:44:44 +0900
parents 144819f5d2f6
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1
144819f5d2f6 Initial revision
kono
parents:
diff changeset
1 use 5.008;
144819f5d2f6 Initial revision
kono
parents:
diff changeset
2 use ExtUtils::MakeMaker;
144819f5d2f6 Initial revision
kono
parents:
diff changeset
3 # See lib/ExtUtils/MakeMaker.pm for details of how to influence
144819f5d2f6 Initial revision
kono
parents:
diff changeset
4 # the contents of the Makefile that is written.
144819f5d2f6 Initial revision
kono
parents:
diff changeset
5 WriteMakefile(
144819f5d2f6 Initial revision
kono
parents:
diff changeset
6 'NAME' => 'Calcon',
144819f5d2f6 Initial revision
kono
parents:
diff changeset
7 'VERSION_FROM' => 'Calcon.pm', # finds $VERSION
144819f5d2f6 Initial revision
kono
parents:
diff changeset
8 'PREREQ_PM' => {
144819f5d2f6 Initial revision
kono
parents:
diff changeset
9 'NKF'=>2.0,
6
714230f2d8b3 *** empty log message ***
kono
parents: 1
diff changeset
10 'Mac::AppleScript'=>0.03,
1
144819f5d2f6 Initial revision
kono
parents:
diff changeset
11 }, # e.g., Module::Name => 1.1
144819f5d2f6 Initial revision
kono
parents:
diff changeset
12 ($] >= 5.005 ? ## Add these new keywords supported since 5.005
6
714230f2d8b3 *** empty log message ***
kono
parents: 1
diff changeset
13 ( # ABSTRACT_FROM => 'Calcon.pm', # retrieve abstract from module
1
144819f5d2f6 Initial revision
kono
parents:
diff changeset
14 AUTHOR => 'Shinji KONO <kono@ie.u-ryukyu.ac.jp>') : ()),
144819f5d2f6 Initial revision
kono
parents:
diff changeset
15 );