root/lang/perl/Archer/Build.PL @ 3676

Revision 3666, 437 bytes (checked in by tokuhirom, 5 years ago)

r3361@mnk (orig r11): tokuhiro | 2006-10-05 20:39:15 -0700
initial import


Line 
1use strict;
2use warnings;
3use Module::Build;
4
5my $builder = Module::Build->new(
6    module_name         => 'Archer',
7    license             => 'perl',
8    dist_author         => 'Tokuhiro Matsuno <tokuhiro __at__ mobilefactory.jp>',
9    dist_version_from   => 'lib/Archer.pm',
10    requires => {
11        'Test::More' => 0,
12        'version'    => 0,
13    },
14    add_to_cleanup      => [ 'Archer-*' ],
15);
16
17$builder->create_build_script();
Note: See TracBrowser for help on using the browser.