thimk-0.3.1: thimk.cabal
name: thimk
version: 0.3.1
cabal-version: >= 1.2
build-type: Simple
license: BSD3
license-file: COPYING
copyright: Copyright © 2010 Bart Massey
author: Bart Massey
maintainer: bart@cs.pdx.edu
stability: alpha
homepage: http://wiki.cs.pdx.edu/bartforge/thimk
package-url: http://wiki.cs.pdx.edu/cabal-packages/thimk-0.3.tar.gz
data-files: README.pcdb
synopsis: Command-line spelling word suggestion tool
extra-source-files: PCDB.hs
description:
"thimk" (an old joke) is a command-line spelling word
suggestion tool. You give it a possibly-misspelled word,
and it spits out one or more properly-spelled words in order
of likelihood of similarity.
.
The latest change to the implementation is an addition
of an optional precompiled SQlite database of phonetic
codes for the entire dictionary, created with
"thimk-makedb". This greatly speeds lookup, permitting
reasonable performance on enormous dictionaries.
category: Console, Text, Application
tested-with: GHC == 6.8.3, GHC == 6.12.1
Executable thimk
main-is: thimk.hs
other-modules: PCDB
build-depends: base >= 4.2 && < 5, parseargs >= 0.1.1,
edit-distance >= 0.1, phonetic-code >= 0.1,
sqlite >= 0.5.1
Executable thimk-makedb
main-is: thimk-makedb.hs
other-modules: PCDB
build-depends: parseargs >= 0.1.1, sqlite >= 0.4.1, phonetic-code >= 0.1