~ubuntu-branches/ubuntu/trusty/libhtml-widgets-navmenu-perl/trusty

« back to all changes in this revision

Viewing changes to Build.PL

  • Committer: Bazaar Package Importer
  • Author(s): Jonathan Yu
  • Date: 2010-12-25 19:07:11 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20101225190711-xqala0zr8h05u3p2
Tags: 1.0501-1
* New upstream release
  + Performance improvement: Class::XSAccessor used now
* Use debhelper 8 and build using Module::Build (prevents the
  installation of tag-release.pl)
* Add patch to fix POD spelling
* Standards-Version 3.9.1 (no changes)
* Use new 3.0 (quilt) source format

Show diffs side-by-side

added added

removed removed

Lines of Context:
8
8
 
9
9
my $build = Test::Run::Builder->new(
10
10
    'module_name' => "HTML::Widgets::NavMenu",
 
11
    configure_requires =>
 
12
    {
 
13
        'Module::Build' => '0.36',
 
14
    },
11
15
    'requires' => 
12
16
    {
13
17
        'Test::More' => 0,
14
 
        'Class::Accessor' => 0,
 
18
        'Class::XSAccessor' => 0,
15
19
        'perl' => "5.6.1",
16
20
        'IO::Scalar' => 0,
17
21
    },
55
59
            "xhtml",
56
60
        ],
57
61
    },
 
62
    create_makefile_pl => 'traditional',
58
63
);
59
64
$build->create_build_script;