#!/usr/bin/perl # $RedRiver: Build.PL,v 1.3 2007/01/28 17:54:38 andrew Exp $ ######################################################################## # Build.PL *** the Build.pl for Palm::Keyring # # 2007.01.28 #*#*# andrew fresh ######################################################################## use strict; use warnings; use Module::Build; my $build = Module::Build->new ( module_name => 'Palm::Keyring', license => 'perl', requires => { 'perl' => '5.6.1', 'Palm::Raw' => '0', 'Palm::StdAppInfo' => '0', 'Digest::MD5' => '0', 'Crypt::DES' => '0', 'Readonly' => '0', }, 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 }, }, }, ); $build->create_build_script;