forked from epa/Perl-Critic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
INSTALL
35 lines (28 loc) · 1.13 KB
/
INSTALL
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
#######################################################################
# $URL: http://perlcritic.tigris.org/svn/perlcritic/branches/Perl-Critic-backlog/INSTALL $
# $Date: 2009-02-01 20:11:13 -0600 (Sun, 01 Feb 2009) $
# $Author: clonezone $
# $Revision: 3099 $
########################################################################
NOTICE
The Perl::Critic distribution contains a fairly large number
of modules. And since it is still developing rapidly, some
of those modules may disappear or be renamed fron one release
to the next. Therefore, I suggest removing any existing
installation of Perl::Critic before installing a new one.
INSTALLATION
To install Perl::Critic with C<make> give the following
commands to your favorite shell:
tar -zxf Perl-Critic-1.096.tar.gz
cd Perl-Critic-1.096
perl Makefile.PL
make
make test
make install
Or if you prefer C<Module::Build>, try this:
tar -zxf Perl-Critic-1.096.tar.gz
cd Perl-Critic-1.096
perl Build.pl
./Build
./Build test
./Build install