Add pkg-config to prereqs.
[pspp-builds.git] / README
1 PSPP is a program for statistical analysis of sampled data. It
2 interprets commands in the SPSS language and produces tabular output
3 in ASCII, PostScript, or HTML format.
4
5 PSPP development is ongoing. It already supports a large subset of
6 SPSS's transformation language.  Its statistical procedure support is
7 currently limited, but growing.
8
9 Instructions for installation are in INSTALL.  Before you install
10 PSPP, you will need to install certain prerequisites:
11
12     * An ANSI C compiler and tool chain.
13
14     * GNU make.  Other make programs will not work.
15
16     * The GNU Scientific Library (libgsl), version 1.6 or later,
17       including libgslcblas included with GSL.
18
19     * Perl, version 5.005_03 or later.  (Perl is required during build
20       but not after installation.)
21
22     * pkg-config (only if you need to regenerate configure after
23       modifying configure.ac).
24
25     * Optional: libncurses.  Without it, PSPP will assume it is
26       running in an 80x25 terminal.
27
28     * Optional: libreadline and libhistory.  Without them, interactive
29       command editing and history features will be disabled.
30
31     * Optional: libplot (from GNU plotutils).  Without it,
32       graphing features will not work.  If you do not have it
33       installed, you must run `configure' with --without-libplot.
34
35     * Optional: GTK+ version 2.6.0 or later, plus libglade 2.0 or
36       later.  Without them, the GUI will not be built.  If you do not
37       have these installed, you must run `configure' with
38       --without-gui.
39
40 For information on differences from previous versions, please see file
41 NEWS.  Full documentation on PSPP's language can be found in the doc/
42 directory.
43           
44 Source code for the latest release of PSPP is available at
45 ftp://ftp.gnu.org/pub/gnu/pspp/.  Older versions may be obtained from
46 ftp://alpha.gnu.org/gnu/pspp/.  Development sources are available from
47 CVS at http://savannah.gnu.org/projects/pspp
48    
49 Questions and comments about using PSPP may be sent to pspp-users@gnu.org.
50 Bug reports may be filed at http://savannah.gnu.org/bugs/?group=pspp
51 or emailed to bug-gnu-pspp@gnu.org.  (We prefer the web-based system
52 because it makes it more difficult for us to lose track of bugs.)
53
54 The long term goals for PSPP are ambitious.  We wish to provide the
55 following support to users:
56
57         * All of the SPSS transformation language.  PSPP already
58           supports a large subset of it.
59
60         * All the statistical procedures that someone is willing to
61           implement, whether they exist in SPSS or not.  Currently,
62           statistical support is limited, but growing.
63
64         * Compatibility with SPSS syntax, including compatibility with
65           known bugs and warts, where it makes sense.  We also provide
66           an "enhanced" mode in certain cases where PSPP can output
67           better results that may surprise SPSS users.
68
69         * Friendly textual and graphical interfaces.  PSPP does not do
70           a good job of this yet.
71
72         * Attractive output, including graphs, in a variety of human-
73           and machine-readable formats.  PSPP currently produces
74           output in ASCII, PostScript, and HTML formats.  We will
75           enhance PSPP's output formatting in the future.
76
77         * Good documentation.  Currently the PSPP manual describes its
78           language completely, but we would like to add information on
79           how to select statistical procedures and interpret their
80           results.
81
82         * Efficient support for very large data sets.  For procedures
83           where it is practical, we wish to efficiently support data
84           sets many times larger than physical memory.  The framework
85           for this feature is already in place, but it has not been
86           tuned or extensively tested.
87
88 Over the long term, we also wish to provide support to developers who
89 wish to extend PSPP with new statistical procedures, by supplying the
90 following:
91
92         * Easy-to-use support for parsing language syntax.  Currently,
93           parsing is done by writing "recursive descent" code by hand,
94           with some support for automated parsing of the most common
95           constructs.  We wish to improve the situation by supplying a
96           more complete and flexible parser generator.
97
98         * Easy-to-use support for producing attractive output.
99           Currently, output is done by writing code to explicitly fill
100           in table cells with data.  We should be able to supply a
101           more convenient interface that also allows for providing
102           machine-readable output.
103
104         * Eventually, a plug-in interface for procedures.  Over the
105           short term, the interface between the PSPP core and
106           statistical procedures is evolving quickly enough that a
107           plug-in model does not make sense.  Over the long term, it
108           may make sense to introduce plug-ins.