~ubuntu-branches/ubuntu/jaunty/horae/jaunty

« back to all changes in this revision

Viewing changes to 0CPAN/Spreadsheet-WriteExcel-2.15/INSTALL

  • Committer: Bazaar Package Importer
  • Author(s): Carlo Segre
  • Date: 2008-02-23 23:13:02 UTC
  • mfrom: (2.1.2 hardy)
  • Revision ID: james.westby@ubuntu.com-20080223231302-mnyyxs3icvrus4ke
Tags: 066-3
Apply patch to athena_parts/misc.pl for compatibility with 
perl-tk 804.28.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
======================================================================
2
 
NAME
3
 
 
4
 
    Spreadsheet::WriteExcel - Write formatted text and numbers to a 
5
 
    cross-platform Excel binary file.
6
 
 
7
 
======================================================================
8
 
REQUIREMENTS
9
 
 
10
 
    This module requires Perl 5.005 (or later)
11
 
    Parse::RecDescent
12
 
        http://search.cpan.org/search?dist=Parse-RecDescent
13
 
    File::Temp
14
 
        http://search.cpan.org/search?dist=File-Temp
15
 
 
16
 
 
17
 
======================================================================
18
 
INSTALLATION
19
 
 
20
 
    Method 1, standard install with make
21
 
    ====================================
22
 
    Download the zipped tar file from one of the following:
23
 
        http://search.cpan.org/search?dist=Spreadsheet-WriteExcel
24
 
        http://theoryx5.uwinnipeg.ca/mod_perl/cpan-search?idinfo=154
25
 
        ftp://ftp.funet.fi/pub/languages/perl/CPAN/authors/id/J/JM/JMCNAMARA/
26
 
        
27
 
    Unzip the module as follows or use winzip:
28
 
 
29
 
           tar -zxvf Spreadsheet-WriteExcel-0.xx.tar.gz
30
 
 
31
 
    The module can be installed using the standard Perl procedure:
32
 
 
33
 
        perl Makefile.PL
34
 
        make
35
 
        make test
36
 
        make install    # You may need to be root
37
 
        make clean      # or make realclean
38
 
 
39
 
    Windows users without a working "make" can get nmake from:
40
 
    
41
 
        ftp://ftp.microsoft.com/Softlib/MSLFILES/nmake15.exe
42
 
 
43
 
 
44
 
    Method 2, CPAN.pm install
45
 
    =========================
46
 
    If you have CPAN.pm configured you can install the module as
47
 
    follows:
48
 
 
49
 
        perl -MCPAN -e "install 'Spreadsheet::WriteExcel'"
50
 
 
51
 
 
52
 
    Method 3, ActivePerl ppm
53
 
    ========================
54
 
    ActivePerl users can use PPM as follows:
55
 
 
56
 
        C:\> ppm
57
 
        PPM> set repository tmp http://homepage.eircom.net/~jmcnamara/perl
58
 
        PPM> install Spreadsheet-WriteExcel
59
 
        PPM> quit
60
 
        C:\>
61
 
 
62
 
        If this fails try the following:
63
 
 
64
 
        PPM>install http://homepage.eircom.net/~jmcnamara/perl/Spreadsheet-WriteExcel.ppd
65
 
 
66
 
    If both of these fail you should ensure that ppm is working
67
 
    correctly. Try to install the File::Slurp module as a test:
68
 
 
69
 
        C:\> ppm
70
 
        PPM> install File-Test
71
 
        PPM> quit
72
 
        C:\>
73
 
 
74
 
    A failure here will indicate that your ppm isn't configured
75
 
    correctly or, more likely, that you are behind a firewall. Have a
76
 
    look at the "Using PPM" documentation that comes with
77
 
    ActivePerl to see how to resolve these issues.
78
 
 
79
 
    Method 4, ActivePerl local ppm
80
 
    ==============================
81
 
    If the previous ppm methods fail you can try a local ppm install
82
 
    as follows. Download the following two files (xx is the most
83
 
    recent version number):
84
 
 
85
 
        http://homepage.eircom.net/~jmcnamara/perl/Spreadsheet-WriteExcel.ppd
86
 
        http://homepage.eircom.net/~jmcnamara/perl/Spreadsheet-WriteExcel-0.xx-PPM.tar.gz
87
 
 
88
 
    Copy them to a temp directory. There is no need to un-tar or unzip
89
 
    the PPM file.
90
 
 
91
 
    In the DOS shell change to the temp directory and run ppm:
92
 
 
93
 
         C:\> cd c:\temp
94
 
         C:\Temp> ppm
95
 
 
96
 
         PPM> install Spreadsheet-WriteExcel.ppd
97
 
         Install package 'Spreadsheet-WriteExcel.ppd?' (y/N): y
98
 
         Retrieving package 'Spreadsheet-WriteExcel.ppd'...
99
 
         Writing C:\perl\site\lib\auto\Spreadsheet\WriteExcel\.packlist
100
 
         PPM> quit
101
 
         Quit!
102
 
 
103
 
    The module should now be installed. Note, you will also have to
104
 
    install Parse::RecDescent and possibly File::Temp if it isn't
105
 
    already installed .
106
 
 
107
 
 
108
 
======================================================================
109
 
UPDATES
110
 
 
111
 
    You can keep up to date with future release by registering as a
112
 
    user with Freshmeat http://freshmeat.net/ and subscribing to
113
 
    Spreadsheet::WriteExcel at the project page:
114
 
    http://freshmeat.net/projects/writeexcel/
115
 
 
116
 
    You will then receive mailed updates when a new version is
117
 
    released.
118
 
    
119
 
    Alternatively you can keep an eye on news://comp.lang.perl.announce
120
 
 
121
 
======================================================================
122
 
AUTHOR
123
 
 
124
 
    John McNamara (jmcnamara@cpan.org)