source: tags/Locale-Msgfmt-0.11/Build.PL @ 5664

Revision 5664, 542 bytes checked in by ryan52, 3 years ago (diff)

still require the newer version of Locale::Maketext::Gettext
when running under CPAN Testers

Line 
1use strict;
2use warnings;
3use Module::Build;
4
5my $builder = Module::Build->new(
6    module_name         => 'Locale::Msgfmt',
7    license             => 'perl',
8    dist_author         => 'Ryan Niebur <ryanryan52@gmail.com>',
9    dist_version_from   => 'lib/Locale/Msgfmt.pm',
10    build_requires => {
11        'Test::More' => 0,
12        $ENV{AUTOMATED_TESTING} ? ('Locale::Maketext::Gettext' => '1.28') : (),
13    },
14    add_to_cleanup      => [ 'Locale-Msgfmt-*' ],
15    create_makefile_pl => 'traditional',
16);
17
18$builder->create_build_script();
Note: See TracBrowser for help on using the repository browser.