aboutsummaryrefslogtreecommitdiff
path: root/templates/download.html
blob: 38392e715afb9c580e4722e9b1126793179f8ff2 (plain)
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{# This file is part of GCIDE                                           #}
{# Copyright (C) 2012 Sergey Poznyakoff                                 #}

{# GCIDE is free software; you can redistribute it and/or modify        #}
{# it under the terms of the GNU General Public License as published by #}
{# the Free Software Foundation; either version 3, or (at your option)  #}
{# any later version.                                                   #}

{# GCIDE is distributed in the hope that it will be useful,             #}
{# but WITHOUT ANY WARRANTY; without even the implied warranty of       #}
{# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        #}
{# GNU General Public License for more details.                         #}

{# You should have received a copy of the GNU General Public License    #}
{# along with GCIDE.  If not, see <http://www.gnu.org/licenses/>.       #}

{% load withsetting %}

{% withsetting GCIDE_FTP as ftp, GCIDE_DISTRIBUTIONS as distlist, GCIDE_VERSION as version %}

<div class="block-note"><span class="block-contents">
    Note: the download addresses below are for the <dfn>release
    candidate</dfn> versions.  They will change when the official
    version is released]</span></div>
<h2>Latest releases</h2>
<table class="download">
  <thead>
  <tr>
    <td>Archive</td>
    <td>Size</td>
    <td>MD5</td>
    <td>Signature</td>
  </tr>
  </thead>
  {% for dist in distlist %}
  <tbody {% if dist.class %}class="{{ dist.class }}"{% endif %}>
    <tr>
      <td><a href="{{ dist.ftp }}/{{ dist.archive }}">{{ dist.archive }}</a></td>
      <td>{{ dist.size }}</td>
      <td>{{ dist.hash }}</td>
      <td><a href="{{ dist.ftp }}/{{ dist.archive }}.sig">{{ dist.archive }}.sig</a></td>
    </tr>
  </tbody>
  {% endfor %}
</table>

<p>
You can use the signature file to verify that
the corresponding file (without the .sig suffix) is intact.  First,
be sure to download both the <i>.sig</i> file and the corresponding tarball.
Then, run a command like this:
</p>

<pre>
  gpg --verify gcide-{{ version }}.tar.gz.sig
</pre>

<p>
If that command fails because you don't have the required public key,
then run the following to import it:
</p>

<pre>
  gpg --keyserver keys.gnupg.net --recv-keys 55D0C732
</pre>
<p>
and rerun the `gpg --verify' command.
</p>  

<h2>Installation and Use</h2>
<p>
  Download the latest tarball and unpack it.  This will create the directory
<tt>gcide-{{ version }}</tt>, populated with dictionary corpus files
(named <tt>CIDE.A</tt> through <tt>CIDE.Z</tt>) and several ancillary
files.
</p>
<p>
  The corpus files use a special markup, therefore <b>GNU</b> provides
  special software that can be used to browse them.  Download
  the <a href="http://www.gnu.org.ua/software/dico/download.html">GNU
  Dico</a>, compile and install it:</p>

<pre>
  $ tar xf dico-3.0.tar.gz
  $ cd dico-3.0.tar.gz
  $ ./configure
  $ make
  $ make install
</pre>  

<p>
  Once done, start the <b>gcider</b> utility to browse and view the
  dictionary.  When started for the first time, it will ask you about
  the directory where the dictionary files reside.  Then, the utility will
  remember this information and re-use it on subsequent startups.
</p>

<p>
  The detailed instructions on use of <b>gcider</b> are available <a href="http://dico.gnu.org.ua/gcider.html">online</a>.
</p>

<p>GNU Dico provides also
  a <a href="http://dico.gnu.org.ua/modules/gcide">loadable module</a>
  which enables dictionary servers to handle <b>GCIDE</b>.  
</p>

<h2>Other releases</h2>
<p>
  This and older versions of <b>GCIDE</b> can be downloaded from
<a href="{{ ftp }}">its ftp home</a>.
</p>
<p>
  You can keep track of the news and updates at the
<a href="http://puszcza.gnu.org.ua/projects/gcide">project's
  homepage</a>.
</p>

{% endwithsetting %}

Return to:

Send suggestions and report system problems to the System administrator.