Annotation of palm/Palm-Keyring/Build.PL, Revision 1.6
1.1 andrew 1: #!/usr/bin/perl
1.6 ! andrew 2: # $RedRiver: Build.PL,v 1.5 2007/01/29 02:49:18 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::StdAppInfo' => '0',
19: 'Digest::MD5' => '0',
20: 'Crypt::DES' => '0',
21: },
1.5 andrew 22: create_makefile_pl => 'traditional',
1.2 andrew 23: create_readme => 1,
1.3 andrew 24: create_html => 1,
1.1 andrew 25: auto_features => {
26: YAML_support =>
27: {
28: description => "Use YAML.pm to write META.yml files",
29: requires => { YAML => ' >= 0.35, != 0.49_01 ' },
1.2 andrew 30: },
31: manpage_support =>
32: {
33: description => "Create Unix man pages",
34: requires => { 'Pod::Man' => 0 },
35: },
36: HTML_support =>
37: {
38: description => "Create HTML documentation",
39: requires => { 'Pod::Html' => 0 },
1.1 andrew 40: },
41: },
42: );
43: $build->create_build_script;
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>