#!/usr/bin/perl # $RedRiver$ ######################################################################## # 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', }, auto_features => { YAML_support => { description => "Use YAML.pm to write META.yml files", requires => { YAML => ' >= 0.35, != 0.49_01 ' }, }, }, ); $build->create_build_script;