File: WriteAll.pm

package info (click to toggle)
libmodule-install-perl 1.21-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 636 kB
  • sloc: perl: 3,569; makefile: 13
file content (20 lines) | stat: -rw-r--r-- 350 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package Module::Install::Admin::WriteAll;

use strict;
use Module::Install::Base;

use vars qw{$VERSION @ISA};
BEGIN {
	$VERSION = '1.21';
	@ISA     = qw{Module::Install::Base};
}

sub WriteAll {
	my ($self, %args) = @_;
	$self->load('Makefile');
	if ( $args{check_nmake} ) {
		$self->load($_) for qw(Makefile check_nmake can_run get_file);
	}
}

1;