www/INSTALL.rst
changeset 484 91254be1b84c
parent 483 370ed8138f62
child 498 78f1ec07fe20
equal deleted inserted replaced
483:370ed8138f62 484:91254be1b84c
    19 * ``dict.dz`` for use with ``dictd``. Goldendict and other end used dictionary
    19 * ``dict.dz`` for use with ``dictd``. Goldendict and other end used dictionary
    20   programs understand this format.
    20   programs understand this format.
    21 
    21 
    22 Compiled tarballs have names like::
    22 Compiled tarballs have names like::
    23 
    23 
    24   gadict-$major.$minor.tar.bz2
    24   gadict-$major.$minor.tar.gz
       
    25   gadict-$major.$minor.zip
    25 
    26 
    26 Source tarballs have names like::
    27 Source tarballs have names like::
    27 
    28 
    28   gadict-$major.$minor_src.tar.gz
    29   gadict-$major.$minor_src.tar.gz
    29 
    30 
    30 Manual installation instruction for GoldenDict.
    31 Installation instruction for GoldenDict
       
    32 =======================================
       
    33 
       
    34 Get distribution tarball and extract files from ``dictd`` directory in desired
       
    35 place.
       
    36 
       
    37 Select ``Edit ==> Dictionaries...`` in GoldenDict menu (or just press ``F3``)
       
    38 and add directory where you extracted files. Press ``Refresh`` button and enjoy!
       
    39 
       
    40 .. NOTE:: Only ``*.dict.dz`` and ``*.index`` files are required for GoldenDict.
       
    41 
       
    42 How to build and install with supplied Makefile
    31 ===============================================
    43 ===============================================
    32 
    44 
    33 Get distribution tarboll and extract all files to any directory. Select::
    45 To build and install to ``/usr/local/`` run as root::
    34 
       
    35  Edit ==> Dictionaries...
       
    36 
       
    37 in GoldenDict menu (or just press ``F3``) and add directory to where you
       
    38 extracted files. Press ``Refresh`` button. That's all.
       
    39 
       
    40 **Note** only ``*.dict.dz`` and ``*.index`` files are required for GoldenDict.
       
    41 You can safely remove other fils.
       
    42 
       
    43 How to build and install from supplied Makefile.
       
    44 ================================================
       
    45 
       
    46 To build and install in /usr/local/ run as root::
       
    47 
    46 
    48   $ make install
    47   $ make install
    49 
    48 
    50 If you run as regular user ``prefix`` set to::
    49 For regular user ``prefix`` is set to::
    51 
    50 
    52   $HOME/usr
    51   $HOME/usr
    53 
    52 
    54 To build and install in different place run::
    53 To install to different place run::
    55 
    54 
    56   $ make install prefix=PREFIX
    55   $ make install prefix=PREFIX
    57 
    56 
    58 How to uninstall from supplied Makefile.
    57 How to uninstall from supplied Makefile
    59 ========================================
    58 =======================================
    60 
    59 
    61 To uninstall run one command from list accordingly to installation procedure::
    60 To uninstall run one of::
    62 
    61 
    63   $ make uninstall
    62   $ make uninstall
    64   $ make uninstall prefix=PREFIX
    63   $ make uninstall prefix=PREFIX
    65   $ make prefix=PREFIX uninstall uninstall-local-symlink
    64   $ make prefix=PREFIX uninstall uninstall-local-symlink
    66 
    65 
       
    66 accordingly to installation procedure.
       
    67