Fix synopsis
[gcap.git] / INSTALL
blob7dd7281b2507c6adbd171a59f3d0625297416dcb
3 PREREQUISITES
4 =============
6 Required
7 --------
9   * Perl 5.10.1+      <http://perl.org/>
10   * Getopt::ArgvFile  <http://search.cpan.org/perldoc?Getopt::ArgvFile>
11   * HTML::Entities    <http://search.cpan.org/perldoc?HTML::Entities>
12   * XML::DOM          <http://search.cpan.org/perldoc?XML::DOM>
14 Recommended
15 -----------
17   * Umph::Prompt      <http://umph.googlecode.com/>
18     for --interactive
20 Additionally, to install:
21 -------------------------
23   * ExtUtils::MakeMaker <http://search.cpan.org/perldoc?ExtUtils::MakeMaker>
26 INSTALLATION
27 ============
29 Notes
30 -----
32 Uninstall earlier versions of gcap if you have any installed.
34 Typical installation
35 --------------------
37 To install:
39   perl Makefile.PL
40   make
41   make install
43   * Note that you can specify install prefix with INSTALL_BASE
44     e.g. perl Makefile.PL INSTALL_BASE=/usr/local
46 Recommended reading if you are new to ExtUtils::MakeMaker:
47   * <http://search.cpan.org/perldoc?ExtUtils::MakeMaker>
48   * <http://perldoc.perl.org/ExtUtils/MakeMaker/FAQ.html>
50 For the lazy
51 ------------
53 If you do not want to install gcap (and Umph::Prompt),
54 here is one way to work around that:
56   export PERL5LIB=/path/to/untarred/Umph-Prompt/lib/
57   export PATH=$PATH:/path/to/untarred/gcap/bin/
58   (run gcap)
61 vim: set ts=2 sw=2 tw=72 expandtab: