The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
use Module::Build;
use v5.10;
Module::Build->new
    ( module_name => 'WriteAt',
    license => 'perl',
   prereq => {
	'Regexp::Grammars'=>1.042,
        'Perl6::Pod::Lib'=>0.13,
        'Perl6::Pod'=>0.71,
        'DateTime::Format::W3CDTF'=>0,
	'Template'=>2.24
	     },
    script_files=>[qw!
	scripts/writeat
	scripts/atom2file
    !],
   dist_version_from=>'lib/WriteAt.pm',
    meta_merge=>{
     resources=> {
        repository => 'git://github.com/zag/writeat.git',
        bugtracker=>'http://rt.cpan.org/Public/Dist/Display.html?Name=WriteAt'
    }
    },
   dist_author=>'Zahatski Aliaksandr zag@cpan.org',
    create_makefile_pl=>$ENV{DO_OUTCPAN} ? 'traditional':'passthrough'
    )->create_build_script;