Changeset 5654


Ignore:
Timestamp:
06/27/09 00:25:57 (3 years ago)
Author:
azawawi
Message:

[Ecliptic] added Locale::Msgfmt po->mo Pure Perl support. Ryan52++

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Padre-Plugin-Ecliptic/Build.PL

    r5318 r5654  
    44 
    55 
    6 my $builder = Module::Build->new( 
     6my $class = Module::Build->subclass(code => <<'EOF'); 
     7    use Locale::Msgfmt; 
     8    sub process_mo_files { 
     9        msgfmt({ 
     10            in => "lib/Padre/Plugin/Ecliptic/share/locale/", 
     11            out => "blib/lib/Padre/Plugin/Ecliptic/share/locale/"}); 
     12    } 
     13EOF 
     14my $builder = $class->new( 
    715    module_name         => 'Padre::Plugin::Ecliptic', 
    816    license             => 'perl', 
     
    1321        'Test::Exception'         => '0.27', 
    1422        'Test::NoWarnings'        => '0.084', 
    15         'Test::NeedsDisplay'      => '1.05', 
     23        'Locale::Msgfmt'          => '0.07', 
    1624    }, 
    1725    requires => { 
Note: See TracChangeset for help on using the changeset viewer.