[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Aspell-user] Aspell Spell Helper huge dictionary
From: |
Krzysztof Żelechowski |
Subject: |
Re: [Aspell-user] Aspell Spell Helper huge dictionary |
Date: |
Sat, 18 Sep 2010 19:43:13 +0200 |
Dnia piątek, 17 września 2010 o 03:47:47 Kevin Atkinson napisał(a):
> On Thu, 16 Sep 2010, Krzysztof ?elechowski wrote:
>
> > 1. Is the huge English dictionary available off line? In particular, I am
> > interested in a dictionary containing the word "motoric".
>
> An unoffical link:
> http://suggest.aspell.net/huge.tar.gz
>
The following patch will allow to build the dictionary in a build root
environment [1].
The name DESTDIR is, of course, arbitrary; I chose it because it is used by
aspell-en.
Additionally, according to the rules for Dictionary Naming [2], the name should
be 'en-huge'.
Index: en/huge/Makefile
===================================================================
RCS file: /home/krzysztof/.cvs/aspell/en/huge/Makefile,v
retrieving revision 1.1.1.1
diff -r1.1.1.1 Makefile
3c3
< precat huge.cwl | aspell create master --lang=en ./english-huge.rws
---
> precat 'huge.cwl' | aspell 'create' 'master' '--lang=en'
> './english-huge.rws'
6c6,7
< cp -a english-huge.multi english-huge.rws `aspell config dict-dir`
---
> cp '-a' 'english-huge.multi' "${DESTDIR}$$(aspell 'config'
> 'dict-dir')/en-huge.multi"
> cp '-a' 'english-huge.rws' "${DESTDIR}$$(aspell 'config'
> 'dict-dir')/en-huge.rws"
Index: en/huge/english-huge.multi
===================================================================
RCS file: /home/krzysztof/.cvs/aspell/en/huge/english-huge.multi,v
retrieving revision 1.1.1.1
diff -r1.1.1.1 english-huge.multi
1c1
< add english-huge.rws
---
> add en-huge.rws
It seems that KDE Sonnet does not support varieties, so only command line can
use it; so be it.
Best regards,
Chris
___
[1]
<URL:http://docs.fedoraproject.org/en-US/Fedora_Draft_Documentation/0.1/html/RPM_Guide/ch09s04s03.html>
[2] <URL:http://aspell.net/man-html/Dictionary-Naming.html#Dictionary-Naming>