Last change
on this file since 86 was
64,
checked in by peichman, 20 years ago
|
fixed grammar so that outer {} and [] are no longer included in the (bracket_)block values
using bracket_block instead of hardcoded pattern for matching hints in formspec
removed dynamic lists from the grammar
some general code cleanup and tidying, in FormBuilder.pm and grammar
added fb.pl to the MANIFEST
bumped back FB version requirement to 3.0 (Makefile.PL)
test for FB3.02 for using growable fields; warn and ignore if verison isn't high enough
|
File size:
909 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 |
---|
[64] | 7 | EXE_FILES => [ 'bin/fb.pl' ], |
---|
[1] | 8 | PREREQ_PM => { |
---|
[64] | 9 | CGI::FormBuilder => 3.0, |
---|
[23] | 10 | Parse::RecDescent => 1.94, |
---|
[19] | 11 | Text::Template => 1.44, |
---|
[55] | 12 | # requirement for Class::ParseText::Base |
---|
| 13 | Class::Base => 0.03, |
---|
[1] | 14 | }, # e.g., Module::Name => 1.1 |
---|
| 15 | ($] >= 5.005 ? ## Add these new keywords supported since 5.005 |
---|
| 16 | (ABSTRACT_FROM => 'lib/Text/FormBuilder.pm', # retrieve abstract from module |
---|
[17] | 17 | AUTHOR => 'Peter Eichman <peichman@cpan.org>') : ()), |
---|
[1] | 18 | ); |
---|
Note: See
TracBrowser
for help on using the repository browser.