source: text-formbuilder/trunk/Makefile.PL @ 61

Last change on this file since 61 was 61, checked in by peichman, 19 years ago

added growable field support (release pending release of FB 3.002)
upped FB required version to 3.001
added a belated thank you to Nate

File size: 914 bytes
Line 
1use ExtUtils::MakeMaker;
2# See lib/ExtUtils/MakeMaker.pm for details of how to influence
3# the contents of the Makefile that is written.
4WriteMakefile(
5    NAME              => 'Text::FormBuilder',
6    VERSION_FROM      => 'lib/Text/FormBuilder.pm', # finds $VERSION
7##     EXE_FILES         => [ 'bin/fb.pl' ],
8    PREREQ_PM         => { 
9                            CGI::FormBuilder => 3.001,
10                            Parse::RecDescent => 1.94,
11                            Text::Template => 1.44,
12                            # requirement for Class::ParseText::Base
13                            Class::Base => 0.03,
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       AUTHOR         => 'Peter Eichman <peichman@cpan.org>') : ()),
18);
Note: See TracBrowser for help on using the repository browser.