https://github.com/mycroftai/mimic1-grapheme
Grapheme plugin
https://github.com/mycroftai/mimic1-grapheme
Last synced: about 1 month ago
JSON representation
Grapheme plugin
- Host: GitHub
- URL: https://github.com/mycroftai/mimic1-grapheme
- Owner: MycroftAI
- License: other
- Created: 2017-08-12T21:53:24.000Z (over 7 years ago)
- Default Branch: development
- Last Pushed: 2017-08-24T03:00:57.000Z (over 7 years ago)
- Last Synced: 2025-01-21T21:46:48.871Z (3 months ago)
- Language: C
- Size: 85.9 KB
- Stars: 0
- Watchers: 7
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: COPYING
Awesome Lists containing this project
README
# mimic-grapheme
Grapheme language support for mimic
This mimic plugin provides Grapheme language analysis support to mimic.
## Dependencies:
### Mimic core:
Install mimic-core from https://github.com/MycroftAI/mimic-core first.
### Meson and ninja
#### Windows
- [python3](https://www.python.org/downloads/windows/)
- [ninja](https://github.com/ninja-build/ninja/releases)
- meson: `pip install meson` (once python is installed)#### OSX:
brew install python3 ninja pkg-config
pip3 install --user meson#### Linux
##### On Debian/Ubuntu
```
$ sudo apt-get install python3 python3-pip gcc pkg-config ninja-build
```##### On Fedora
```
$ sudo dnf install python3 python3-pip gcc pkgconfig ninja-build
```##### On Arch
```
$ sudo pacman -S --needed install python python-pip gcc pkg-config ninja
```## Installation
If mimic-core has been installed to a custom prefix, please export the pkg-config path:
- `export PKG_CONFIG_PATH="/path/to/mimic-core/prefix/lib/x86_64-linux-gnu/pkgconfig"`
Then build and install mimic-grapheme:
- `meson builddir --prefix="/path/to/mimic-core/prefix/"`
- `ninja -C builddir test`
- `ninja -C builddir install`