Last change
on this file since 24 was
23,
checked in by peter, 20 years ago
|
marked Parse::RecDescent as an explicit dependency
added a single-quoted string to the grammar that can be
used in the labels and default values to include characters in [\w\t ]
generated code leaves out overwrriten options
allow option lists to have simple multiword and quoted string values
|
File size:
795 bytes
|
Rev | Line | |
---|
[1] | 1 | use ExtUtils::MakeMaker; |
---|
| 2 | # See lib/ExtUtils/MakeMaker.pm for details of how to influence |
---|
| 3 | # the contents of the Makefile that is written. |
---|
| 4 | WriteMakefile( |
---|
| 5 | NAME => 'Text::FormBuilder', |
---|
[4] | 6 | VERSION_FROM => 'lib/Text/FormBuilder.pm', # finds $VERSION |
---|
[17] | 7 | ## EXE_FILES => [ 'bin/fb.pl' ], |
---|
[1] | 8 | PREREQ_PM => { |
---|
[17] | 9 | CGI::FormBuilder => 2.13, |
---|
[23] | 10 | Parse::RecDescent => 1.94, |
---|
[19] | 11 | Text::Template => 1.44, |
---|
[1] | 12 | }, # e.g., Module::Name => 1.1 |
---|
| 13 | ($] >= 5.005 ? ## Add these new keywords supported since 5.005 |
---|
| 14 | (ABSTRACT_FROM => 'lib/Text/FormBuilder.pm', # retrieve abstract from module |
---|
[17] | 15 | AUTHOR => 'Peter Eichman <peichman@cpan.org>') : ()), |
---|
[1] | 16 | ); |
---|
Note: See
TracBrowser
for help on using the repository browser.