Commit | Line | Data |
---|---|---|
02b7b45d JRT |
1 | ####################################################################### |
2 | # $URL$ | |
3 | # $Date$ | |
4 | # $Author$ | |
5 | # $Revision$ | |
6 | ######################################################################## | |
59b05e08 JRT |
7 | |
8 | NOTICE | |
9 | ||
10 | The Perl::Critic distribution contains a fairly large number | |
11 | of modules. And since it is still developing rapidly, some | |
12 | of those modules may disappear or be renamed fron one release | |
13 | to the next. Therefore, I suggest removing any existing | |
14 | installation of Perl::Critic before installing a new one. | |
15 | ||
16 | INSTALLATION | |
17 | ||
18 | To install Perl::Critic with C<make> give the following | |
19 | commands to your favorite shell: | |
20 | ||
33e51b94 JRT |
21 | tar -zxf Perl-Critic-1.092.tar.gz |
22 | cd Perl-Critic-1.092 | |
59b05e08 JRT |
23 | perl Makefile.PL |
24 | make | |
25 | make test | |
26 | make install | |
27 | ||
28 | Or if you prefer C<Module::Build>, try this: | |
29 | ||
33e51b94 JRT |
30 | tar -zxf Perl-Critic-1.092.tar.gz |
31 | cd Perl-Critic-1.092 | |
59b05e08 JRT |
32 | perl Build.pl |
33 | ./Build | |
34 | ./Build test | |
03967b1f | 35 | ./Build install |