=head1 NAME Module::Build::CleanInstall - Subclass of Module::Build which removes the old module before installing the new one =head1 SYNOPSIS use strict; use warnings; use Module::Build::CleanInstall; my $builder = Module::Build::CleanInstall->new( ... # same as Module::Build ); $builder->create_build_script; =head1 DESCRIPTION L is a subclass of L with one additional feature, before upgrading the module from and old version to a new one, it first removes the files installed by the previous version. This is useful especially when the new version will not contain some files that the old one did, and it is necessary that those files do not remain in place. Since it is a subclass of L it is used exactly like that module. This module does provide an additional action C, but it need not be called separately; the action C will call it when invoked. The uninstalling is done by removing the files in the installed module's L which is created when the module is first installed. =head1 SEE ALSO =over =item L =item L =back =head1 SOURCE REPOSITORY L =head1 AUTHOR Joel Berger, Ejoel.a.berger@gmail.comE =head1 COPYRIGHT AND LICENSE Copyright (C) 2012 by Joel Berger This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.