Add release notes for 0.1.0
[grake.git] / INSTALL
blob02ce3cec8c5e90d7f77078acc7f73959401b87ad
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   * LWP::UserAgent    <http://search.cpan.org/perldoc?LWP::UserAgent>
13 Recommended
14 -----------
16   * Umph::Prompt      <http://umph.googlecode.com/>
17     for --interactive
19 Additionally, to install:
20 -------------------------
22   * ExtUtils::MakeMaker <http://search.cpan.org/perldoc?ExtUtils::MakeMaker>
25 INSTALLATION
26 ============
28 Notes
29 -----
31 Uninstall earlier versions of grake if you have any installed.
33 Typical installation
34 --------------------
36 To install:
38   perl Makefile.PL
39   make
40   make install
42   * Note that you can specify install prefix with INSTALL_BASE
43     e.g. perl Makefile.PL INSTALL_BASE=/usr/local
45 Recommended reading if you are new to ExtUtils::MakeMaker:
46   * <http://search.cpan.org/perldoc?ExtUtils::MakeMaker>
47   * <http://perldoc.perl.org/ExtUtils/MakeMaker/FAQ.html>
49 For the lazy
50 ------------
52 If you do not want to install grake (and Umph::Prompt),
53 here is one way to work around that:
55   export PERL5LIB=/path/to/untarred/Umph-Prompt/lib/
56   export PATH=$PATH:/path/to/untarred/grake/bin/
57   (run grake)
60 vim: set ts=2 sw=2 tw=72 expandtab: