Commit | Line | Data |
a5e1d5dd |
1 | |
2 | =head1 NAME |
3 | |
4 | INSTALL - how to install SQL::Abstract |
5 | |
6 | =head1 DESCRIPTION |
7 | |
8 | To install in your root Perl tree: |
9 | |
10 | perl Makefile.PL |
11 | make |
12 | make test |
13 | make install |
14 | |
15 | If you want to relocate it elsewhere, say for testing, you need |
16 | to change the C<MakeMaker PREFIX> variable: |
17 | |
18 | perl Makefile.PL PREFIX=~/lib |
19 | |
20 | Note: This is true for CPAN modules and is not specific to C<SQL::Abstract>. |
21 | |
22 | =head1 AUTHOR |
23 | |
24 | Copyright (c) 2000-2006 Nate Wiger <nwiger@cpan.org>. |
25 | All Rights Reserved. |
26 | |
27 | This module is free software; you may copy this under the terms of |
28 | the GNU General Public License, or the Artistic License, copies of |
29 | which should have accompanied your Perl kit. |
30 | |