CMU Sphinx common libraries ------------------------------------------ This package contains the basic libraries shared by the CMU Sphinx trainer and all the Sphinx decoders (Sphinx-II, Sphinx-III, and PocketSphinx), as well as some common utilities for manipulating acoustic feature and audio files. Runtime requirements: cygwin-3.3.4 or newer libopenblas-0.3.19-1 python39-3.9.10 swig-4.0.2 Build requirements: above + corresponding devel packages liblapack-devel-3.10.0 Canonical homepage: http://www.cmusphinx.org/ Canonical download: https://github.com/cmusphinx/sphinxbase git clone -depth 1 https://github.com/cmusphinx/sphinxbase.git ------------------------------------ Build instructions: configure --prefix=/usr Some Makefiles need to be modified after configure to add '-no-undefined -export-dynamic' to LDFLAGS to be able to have a shared lib ------------------------------------------- Files included in the binary distro usr ├── bin │   ├── cygsphinxbase-3.dll │   ├── sphinx_cepview.exe │   ├── sphinx_cont_seg.exe │   ├── sphinx_fe.exe │   ├── sphinx_jsgf2fsg.exe │   ├── sphinx_lm_convert.exe │   ├── sphinx_lm_eval.exe │   └── sphinx_pitch.exe ├── include │   └── sphinxbase │   ├── ad.h │   ├── agc.h │   ├── bio.h │   ├── bitarr.h │   ├── bitvec.h │   ├── byteorder.h │   ├── case.h │   ├── ckd_alloc.h │   ├── clapack_lite.h │   ├── cmd_ln.h │   ├── cmn.h │   ├── err.h │   ├── f2c.h │   ├── fe.h │   ├── feat.h │   ├── filename.h │   ├── fixpoint.h │   ├── fsg_model.h │   ├── genrand.h │   ├── glist.h │   ├── hash_table.h │   ├── heap.h │   ├── jsgf.h │   ├── listelem_alloc.h │   ├── logmath.h │   ├── matrix.h │   ├── mmio.h │   ├── ngram_model.h │   ├── pio.h │   ├── prim_type.h │   ├── priority_queue.h │   ├── profile.h │   ├── sbthread.h │   ├── sphinx_config.h │   ├── sphinxbase_export.h │   ├── strfuncs.h │   └── yin.h ├── lib │   ├── libsphinxad.a │   ├── libsphinxad.la │   ├── libsphinxbase.a │   ├── libsphinxbase.dll.a │   ├── libsphinxbase.la │   ├── pkgconfig │   │   └── sphinxbase.pc │   └── python3.9 │   └── site-packages │   └── sphinxbase │   ├── __init__.py │   ├── __pycache__ │   │   ├── __init__.cpython-39.opt-1.pyc │   │   ├── __init__.cpython-39.pyc │   │   ├── sphinxbase.cpython-39.opt-1.pyc │   │   └── sphinxbase.cpython-39.pyc │   ├── _sphinxbase.a │   ├── _sphinxbase.la │   └── sphinxbase.py └── share ├── man │   └── man1 │   ├── sphinx_cepview.1 │   ├── sphinx_cont_seg.1 │   ├── sphinx_fe.1 │   ├── sphinx_lm_convert.1 │   ├── sphinx_lm_eval.1 │   ├── sphinx_lm_sort.1 │   └── sphinx_pitch.1 └── sphinxbase └── swig ├── cmd_ln.i ├── fe.i ├── feat.i ├── fsg_model.i ├── iterators.i ├── jsgf.i ├── logmath.i ├── ngram_model.i ├── sphinxbase.i └── typemaps.i Port Notes: ----- version 5prealpha-EL-1 ----- git clone version as of Feb 2022