Annotation of palm/Palm-Keyring/Build.PL, Revision 1.2
1.1 andrew 1: #!/usr/bin/perl
1.2 ! andrew 2: # $RedRiver: Build.PL,v 1.1 2007/01/28 16:17:54 andrew Exp $
1.1 andrew 3: ########################################################################
4: # Build.PL *** the Build.pl for Palm::Keyring
5: #
6: # 2007.01.28 #*#*# andrew fresh <andrew@mad-techies.org>
7: ########################################################################
8: use strict;
9: use warnings;
10:
11: use Module::Build;
12: my $build = Module::Build->new
13: (
14: module_name => 'Palm::Keyring',
15: license => 'perl',
16: requires => {
17: 'perl' => '5.6.1',
18: 'Palm::Raw' => '0',
19: 'Palm::StdAppInfo' => '0',
20: 'Digest::MD5' => '0',
21: 'Crypt::DES' => '0',
22: },
1.2 ! andrew 23: create_readme => 1,
1.1 andrew 24: auto_features => {
25: YAML_support =>
26: {
27: description => "Use YAML.pm to write META.yml files",
28: requires => { YAML => ' >= 0.35, != 0.49_01 ' },
1.2 ! andrew 29: },
! 30: manpage_support =>
! 31: {
! 32: description => "Create Unix man pages",
! 33: requires => { 'Pod::Man' => 0 },
! 34: },
! 35: HTML_support =>
! 36: {
! 37: description => "Create HTML documentation",
! 38: requires => { 'Pod::Html' => 0 },
1.1 andrew 39: },
40: },
41: );
42: $build->create_build_script;
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>