~ubuntu-branches/ubuntu/utopic/libtk-dirselect-perl/utopic

« back to all changes in this revision

Viewing changes to Build.PL

  • Committer: Bazaar Package Importer
  • Author(s): Dominique Dumont
  • Date: 2010-02-27 20:53:47 UTC
  • mto: This revision was merged to the branch mainline in revision 3.
  • Revision ID: james.westby@ubuntu.com-20100227205347-p5i62k34bi0wlxw0
Tags: upstream-1.12
ImportĀ upstreamĀ versionĀ 1.12

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
use strict;
 
2
use warnings;
 
3
use Module::Build;
 
4
 
 
5
my $builder = Module::Build->new(
 
6
    module_name         => 'Tk::DirSelect',
 
7
    license             => 'perl',
 
8
    dist_author         => 'Michael Carman <mjcarman@cpan.org>',
 
9
    dist_version_from   => 'lib/Tk/DirSelect.pm',
 
10
    requires            => {
 
11
        'Tk' => 0,
 
12
    },
 
13
    build_requires => {
 
14
        'Test::More' => 0,
 
15
    },
 
16
    add_to_cleanup      => [ 'Tk-DirSelect-*' ],
 
17
    create_makefile_pl => 'traditional',
 
18
);
 
19
 
 
20
$builder->create_build_script();