diff options
author | Paul Sokolovsky <pmiscml@gmail.com> | 2006-10-13 10:14:26 +0000 |
---|---|---|
committer | Paul Sokolovsky <pmiscml@gmail.com> | 2006-10-13 10:14:26 +0000 |
commit | 22be8e7a36a6ecb0a117e87fe560deb511f7a316 (patch) | |
tree | fa79c29ddd615dbe3b3da8c3dd572ebabb60380d /packages/sphinx/sphinxbase_0.1.bb | |
parent | 4e4ea6b5c72b147aa42c3f8cf4d5bd62eba450bf (diff) |
pocketsphinx: New package, the CMU PocketSphinx speech recognition engine for handhelds.
* Also, a dependent sphinxbase package.
* Package directory is called sphinx, to fit future ports of full-fledged
Sphinx engines.
* Package is rough for ipkg conventions, just autotools' make install. Whoever
actually does speech recognition with it, please add sane packaging ;-).
Diffstat (limited to 'packages/sphinx/sphinxbase_0.1.bb')
-rw-r--r-- | packages/sphinx/sphinxbase_0.1.bb | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/packages/sphinx/sphinxbase_0.1.bb b/packages/sphinx/sphinxbase_0.1.bb new file mode 100644 index 0000000000..1ee41cc485 --- /dev/null +++ b/packages/sphinx/sphinxbase_0.1.bb @@ -0,0 +1,13 @@ +DESCRIPTION = "Base library for CMU Sphinx speech recognition engines" +HOMEPAGE = "http://www.speech.cs.cmu.edu/pocketsphinx/" +LICENSE = "BSD" + +SRC_URI = "${SOURCEFORGE_MIRROR}/cmusphinx/sphinxbase-0.1.tar.bz2" + +inherit autotools + +EXTRA_OECONF = "--enable-fixed" + +do_stage () { + autotools_stage_all +} |