[BACK]Return to Build.PL CVS log [TXT][DIR] Up to [local] / palm / Palm-Keyring

File: [local] / palm / Palm-Keyring / Build.PL (download)

Revision 1.1, Sun Jan 28 16:17:54 2007 UTC (17 years, 3 months ago) by andrew
Branch: MAIN

the beginnings of a Build.PL for making the stuff for CPAN

#!/usr/bin/perl
# $RedRiver$
########################################################################
# Build.PL *** the Build.pl for Palm::Keyring
# 
# 2007.01.28 #*#*# andrew fresh <andrew@mad-techies.org>
########################################################################
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;