www/INSTALL.rst
changeset 339 4d8d46bbe30d
parent 301 1439e072640a
child 483 370ed8138f62
equal deleted inserted replaced
338:61a9d2de0e3e 339:4d8d46bbe30d
       
     1 .. -*- coding: utf-8 -*-
       
     2 
       
     3 =================================
       
     4  Installing gadict dictionaries.
       
     5 =================================
       
     6 .. contents::
       
     7    :local:
       
     8 
       
     9 Obtaining.
       
    10 ==========
       
    11 
       
    12 For distribution tarbol use (for regular users)::
       
    13 
       
    14   gadict-$major.$minor.tar.bz2
       
    15 
       
    16 For source tarboll use::
       
    17 
       
    18   gadict-$major.$minor_src.tar.gz
       
    19 
       
    20 ``$major`` and ``$minor`` represent version components.
       
    21 
       
    22 To get these files use appropriate links:
       
    23 
       
    24  * https://sourceforge.net/projects/gadict/files/v$major.$minor/gadict-$major.$minor_src.tar.gz
       
    25  * https://sourceforge.net/projects/gadict/files/v$major.$minor/gadict-$major.$minor.tar.gz
       
    26 
       
    27 Manual installation instruction for GoldenDict.
       
    28 ===============================================
       
    29 
       
    30 Get distribution tarboll and extract all files to any directory. Select::
       
    31 
       
    32  Edit ==> Dictionaries...
       
    33 
       
    34 in GoldenDict menu (or just press ``F3``) and add directory to where you
       
    35 extracted files. Press ``Refresh`` button. That's all.
       
    36 
       
    37 **Note** only ``*.dict.dz`` and ``*.index`` files are required for GoldenDict.
       
    38 You can safely remove other fils.
       
    39 
       
    40 How to build and install from supplied Makefile.
       
    41 ================================================
       
    42 
       
    43 To build and install in /usr/local/ run as root::
       
    44 
       
    45   $ make install
       
    46 
       
    47 If you run as regular user ``prefix`` set to::
       
    48 
       
    49   $HOME/usr
       
    50 
       
    51 To build and install in different place run::
       
    52 
       
    53   $ make install prefix=PREFIX
       
    54 
       
    55 How to uninstall from supplied Makefile.
       
    56 ========================================
       
    57 
       
    58 To uninstall run one command from list accordingly to installation procedure::
       
    59 
       
    60   $ make uninstall
       
    61   $ make uninstall prefix=PREFIX
       
    62   $ make prefix=PREFIX uninstall uninstall-local-symlink
       
    63