1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50
|
<!-- <!DOCTYPE Chapter PUBLIC "-//GNOME//DTD DocBook PNG Variant V1.1//EN"> -->
<appendix id="compiling-from-source">
<title>Compiling Galeon From Source Code</title>
<para>
You can download a tarball of the source code from
<application>Galeon</application>'s SourceForge
<ulink url="http://sourceforge.net/projects/galeon">download page</ulink>
</para>
<para>
You also can checkout the most recent <application>Galeon</application>
sources from the GNOME CVS server.
Here are the commands you need to enter in a terminal:
<screen>
<prompt>[bash]$ </prompt><userinput>export CVSROOT=':pserver:anonymous@anoncvs.gnome.org:/cvs/gnome'</userinput>
<prompt>[bash]$ </prompt><userinput>cvs login</userinput>
(Logging in to anonymous@anoncvs.gnome.org)
CVS password:
</screen>
</para>
<para>Just hit enter here, there is no password.</para>
<screen>
<prompt>[bash]$ </prompt><userinput>cvs -z3 checkout galeon</userinput>
</screen>
<para>
The <application>Galeon</application> source will be downloaded to a
'galeon' subdirectory. To compile, change to the 'galeon' subdirectory
and type the following commands:
</para>
<screen>
<prompt>[bash]$ </prompt><userinput>./autogen.sh</userinput>
<prompt>[bash]$ </prompt><userinput>make</userinput>
</screen>
<para>If all goes well, su to root and type:</para>
<screen>
<prompt>[bash]# </prompt><userinput>make install</userinput>
</screen>
<para>
For more detailed instructions, read the INSTALL and FAQ text files.
</para>
</appendix>
|