Artifact 28ea36b703ff418fe9ced4d891e1ecf81fe69dc0d766ffefaac2083e26cc4146:
- File doc/build.md — part of check-in [239ec6803a] at 2017-08-08 18:52:42 on branch trunk — [doc] update about build (user: olr, size: 1387) [annotate] [blame] [check-ins using] [more...]
How to build Grammalecte
Required
- Python 3.6
- Firefox Nightly
- NodeJS
- npm
- jpm
- Thunderbird
Commands
Build a language
make.py LANG
Generate the LibreOffice extension and the package folder. LANG is the lang code (ISO 639).
This script uses the file
config.ini
in the foldergc_lang/LANG
.
First build
make.py LANG -js
This command is required to generate all necessary files.
Options
-b --build_data
Launch the script
build_data.py
in the foldergc_lang/LANG
.
-d --dict
Generate the indexable binary dictionary from the lexicon in the folder
lexicons
.
-js --javascript
Also generate JavaScript extensions. Without this option, only Python modules, data and extensions are generated.
-t --tests
Run unit tests.
-i --install
Install the LibreOffice extension.
-fx --firefox
Launch Firefox Developper (before Firefox 57). Unit tests can be lanched from Firefox, with CTRL+SHIFT+F12.
-we --webext
Launch Firefox Nightly (Firefox 57+). Unit tests can be lanched from the menu.
-tb --thunderbird
Launch Thunderbird.
Examples
Full rebuild:
make.py LANG -b -d -js
After modifying grammar rules:
make.py LANG -t
If you modify the lexicon:
make.py LANG -d -js
If you modify your script build_data.py
:
make.py LANG -b -js