=================================================================== RCS file: /cvs/palm/Palm-Keyring/Build.PL,v retrieving revision 1.1 retrieving revision 1.7 diff -u -r1.1 -r1.7 --- palm/Palm-Keyring/Build.PL 2007/01/28 16:17:54 1.1 +++ palm/Palm-Keyring/Build.PL 2007/02/21 05:25:33 1.7 @@ -1,5 +1,5 @@ #!/usr/bin/perl -# $RedRiver$ +# $RedRiver: Build.PL,v 1.6 2007/02/03 00:54:01 andrew Exp $ ######################################################################## # Build.PL *** the Build.pl for Palm::Keyring # @@ -12,19 +12,37 @@ my $build = Module::Build->new ( module_name => 'Palm::Keyring', + dist_abstract => 'Handler for Palm Keyring databases.', license => 'perl', requires => { 'perl' => '5.6.1', - 'Palm::Raw' => '0', 'Palm::StdAppInfo' => '0', - 'Digest::MD5' => '0', - 'Crypt::DES' => '0', + }, + recommends => { + 'Digest::MD5' => '0', + 'Crypt::DES' => '0', + 'Crypt::CBC' => '0', + 'Digest::HMAC_SHA1' => '0', + 'Digest::SHA1' => '0', }, + create_makefile_pl => 'traditional', + create_readme => 1, + create_html => 1, auto_features => { YAML_support => { description => "Use YAML.pm to write META.yml files", requires => { YAML => ' >= 0.35, != 0.49_01 ' }, + }, + manpage_support => + { + description => "Create Unix man pages", + requires => { 'Pod::Man' => 0 }, + }, + HTML_support => + { + description => "Create HTML documentation", + requires => { 'Pod::Html' => 0 }, }, }, );