~ubuntu-branches/ubuntu/utopic/libclass-meta-perl/utopic

« back to all changes in this revision

Viewing changes to Build.PL

  • Committer: Bazaar Package Importer
  • Author(s): Krzysztof Krzyzaniak (eloy)
  • Date: 2006-01-03 17:29:20 UTC
  • Revision ID: james.westby@ubuntu.com-20060103172920-h94p8qrrav90bzq0
Tags: upstream-0.52
ImportĀ upstreamĀ versionĀ 0.52

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
use Module::Build;
 
2
 
 
3
my $build = Module::Build->new(
 
4
    module_name        => 'Class::Meta',
 
5
    license            => 'perl',
 
6
    requires            => { Data::Types => '0.05',
 
7
                             Class::ISA  => '0.31',
 
8
                           },
 
9
    build_requires     => { Test::Simple => '0.17',
 
10
                          },
 
11
    create_makefile_pl => 'passthrough',
 
12
);
 
13
$build->create_build_script;