From 3bd26013ca40e9d955b3d62943a783dc297291ea Mon Sep 17 00:00:00 2001 From: Jesse Luehrs Date: Mon, 28 Sep 2009 00:44:39 -0500 Subject: convert to dzil --- inc/Module/Install/WriteAll.pm | 40 ---------------------------------------- 1 file changed, 40 deletions(-) delete mode 100644 inc/Module/Install/WriteAll.pm (limited to 'inc/Module/Install/WriteAll.pm') diff --git a/inc/Module/Install/WriteAll.pm b/inc/Module/Install/WriteAll.pm deleted file mode 100644 index 2b3be8e..0000000 --- a/inc/Module/Install/WriteAll.pm +++ /dev/null @@ -1,40 +0,0 @@ -#line 1 -package Module::Install::WriteAll; - -use strict; -use Module::Install::Base; - -use vars qw{$VERSION @ISA $ISCORE}; -BEGIN { - $VERSION = '0.73'; - @ISA = qw{Module::Install::Base}; - $ISCORE = 1; -} - -sub WriteAll { - my $self = shift; - my %args = ( - meta => 1, - sign => 0, - inline => 0, - check_nmake => 1, - @_, - ); - - $self->sign(1) if $args{sign}; - $self->Meta->write if $args{meta}; - $self->admin->WriteAll(%args) if $self->is_admin; - - $self->check_nmake if $args{check_nmake}; - unless ( $self->makemaker_args->{PL_FILES} ) { - $self->makemaker_args( PL_FILES => {} ); - } - - if ( $args{inline} ) { - $self->Inline->write; - } else { - $self->Makefile->write; - } -} - -1; -- cgit v1.2.3-54-g00ecf