|
Revision 11973, 0.8 kB
(checked in by dankogai, 22 months ago)
|
|
Assorted general utility attributes
|
| Line | |
|---|
| 1 | use strict; |
|---|
| 2 | use warnings; |
|---|
| 3 | use ExtUtils::MakeMaker; |
|---|
| 4 | |
|---|
| 5 | # See lib/ExtUtils/MakeMaker.pm for details of how to influence |
|---|
| 6 | # the contents of the Makefile that is written. |
|---|
| 7 | WriteMakefile( |
|---|
| 8 | 'NAME' => 'Attribute::Util', |
|---|
| 9 | 'VERSION_FROM' => 'lib/Attribute/Util.pm', # finds $VERSION |
|---|
| 10 | 'PREREQ_PM' => { |
|---|
| 11 | 'Attribute::Handlers' => '0.61', |
|---|
| 12 | 'Memoize' => 0, |
|---|
| 13 | }, |
|---|
| 14 | dist => { |
|---|
| 15 | |
|---|
| 16 | # don't ask about existing .tar.gz files |
|---|
| 17 | COMPRESS => 'gzip --force --best' |
|---|
| 18 | }, |
|---|
| 19 | ( |
|---|
| 20 | $] >= 5.005 |
|---|
| 21 | ? ## Add these new keywords supported since 5.005 |
|---|
| 22 | ( |
|---|
| 23 | ABSTRACT_FROM => |
|---|
| 24 | 'lib/Attribute/Util.pm', # retrieve abstract from module |
|---|
| 25 | AUTHOR => 'Dan Kogai <dankogai@dan.co.jp>' |
|---|
| 26 | ) |
|---|
| 27 | : () |
|---|
| 28 | ), |
|---|
| 29 | |
|---|
| 30 | ); |
|---|