Acme-Padre-PlayCode
view release on metacpan or search on metacpan
use strict;
use warnings;
use Module::Build;
my $class = Module::Build->subclass( code => <<'EOF');
eval { require Locale::Msgfmt; Locale::Msgfmt->import(); };
sub process_mo_files {
die("requires Locale::Msgfmt") if(! $INC{'Locale/Msgfmt.pm'});
msgfmt({
in => "share/locale/",
out => "blib/share/locale/"});
}
EOF
my $builder = $class->new(
module_name => 'Acme::Padre::PlayCode',
license => 'perl',
dist_author => 'Fayland Lam <fayland@gmail.com>',
dist_version_from => 'lib/Acme/Padre/PlayCode.pm',
build_requires => {
'Test::More' => 0,
'Locale::Msgfmt' => '0.14',
Revision history for Acme::Padre::PlayCode
0.13 2010.01.15
Missing share/locale/ (RT 53690)
0.12 2009.08.28
actually install translations (RSN)
Renamed to the new Padre 0.43 PO naming scheme (azawawi)
Renamed it to Acme::Padre::PlayCode (azawawi)
0.11 2009.05.31
removed taint mode for tests, leading to build failures (jquelin)
0.10 2009.05.26
Build.PL
Changes
lib/Acme/Padre/PlayCode.pm
Makefile.PL
MANIFEST This list of files
META.yml
README
share/locale/Acme__Padre__PlayCode-ar.po
share/locale/Acme__Padre__PlayCode-de.po
share/locale/Acme__Padre__PlayCode-es-es.po
share/locale/Acme__Padre__PlayCode-fr-fr.po
share/locale/Acme__Padre__PlayCode-ja.po
share/locale/Acme__Padre__PlayCode-nl-nl.po
share/locale/Acme__Padre__PlayCode-pl.po
share/locale/Acme__Padre__PlayCode-pt-br.po
share/locale/Acme__Padre__PlayCode-ru.po
share/locale/Acme__Padre__PlayCode-zh-cn.po
share/locale/Acme__Padre__PlayCode-zh-tw.po
t/00-load.t
t/pod.t
( run in 0.747 second using v1.01-cache-2.11-cpan-ceb78f64989 )