#!perl use 5.008001; use utf8; use strict; use warnings; use English qw< -no_match_vars >; use Module::Build; my $class = Module::Build->subclass( code => <<'END_SUBCLASS' ); sub ACTION_authortest { my ($self) = @_; $self->depends_on('build'); $self->depends_on('manifest'); $self->depends_on('distmeta'); $self->test_files( qw< t xt/author > ); $self->recursive_test_files(1); $self->depends_on('test'); return; } # end ACTION_authortest() sub ACTION_distdir { my ($self) = @_; $self->depends_on('authortest'); return $self->SUPER::ACTION_distdir(); } # end ACTION_distdir END_SUBCLASS my $builder = $class->new( module_name => 'PPIx::Shorthand', dist_author => 'Elliot Shank ', license => 'perl', dynamic_config => 0, create_license => 1, create_packlist => 1, create_readme => 0, sign => 0, build_requires => { English => 0, 'Test::More' => 0, 'Test::Exception' => 0, }, requires => { Carp => 0, Exporter => 5.57, Readonly => 0, strict => 0, utf8 => 0, version => 0, warnings => 0, }, recommends => { }, add_to_cleanup => [ qw< LICENSE MANIFEST MANIFEST.bak META.yml Makefile Makefile.PL pod2htm?.tmp pm_to_blib PPIx-Shorthand-* > ], ); $builder->create_build_script(); # setup vim: set filetype=perl tabstop=4 softtabstop=4 expandtab : # setup vim: set shiftwidth=4 shiftround textwidth=78 nowrap autoindent : # setup vim: set foldmethod=indent foldlevel=0 :