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

Annotation of palm/Palm-Keyring/Build.PL, Revision 1.1

1.1     ! andrew      1: #!/usr/bin/perl
        !             2: # $RedRiver$
        !             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:        },
        !            23:        auto_features => {
        !            24:                YAML_support =>
        !            25:                {
        !            26:                        description => "Use YAML.pm to write META.yml files",
        !            27:                        requires => { YAML => ' >= 0.35, != 0.49_01 ' },
        !            28:                },
        !            29:        },
        !            30: );
        !            31: $build->create_build_script;

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>