commit 704915237b213db755d75913b33b1aec493d6935 parent 309ea700936c07c0491f4ae1f7b2d677e9d0a815 Author: umhau <umhau@alum.gcc.edu> Date: Wed, 5 Jul 2017 17:31:24 -0400 I don't think I even need pocketsphinx Diffstat:
| M | install.sh | | | 30 | +++++++++++++++--------------- |
1 file changed, 15 insertions(+), 15 deletions(-)
diff --git a/install.sh b/install.sh @@ -89,21 +89,21 @@ install_dependencies() { echo "SphinxTrain already installed." fi - # check for and install pocketsphinx - echo -n "Checking for pocketsphinx..." - if [ ! -d $install_dir/pocketsphinx/ ]; then - echo "installing..."; cd $install_dir - git clone "https://github.com/$CMUsrc/pocketsphinx.git" - cd ./pocketsphinx - ./autogen.sh - ./configure - make -j $CORES clean all - make -j $CORES check - sudo make -j $CORES install - sudo chown -R $USER: $install_dir # bug: dir had root ownership. - else - echo "PocketSphinx already installed." - fi + # # check for and install pocketsphinx + # echo -n "Checking for pocketsphinx..." + # if [ ! -d $install_dir/pocketsphinx/ ]; then + # echo "installing..."; cd $install_dir + # git clone "https://github.com/$CMUsrc/pocketsphinx.git" + # cd ./pocketsphinx + # ./autogen.sh + # ./configure + # make -j $CORES clean all + # make -j $CORES check + # sudo make -j $CORES install + # sudo chown -R $USER: $install_dir # bug: dir had root ownership. + # else + # echo "PocketSphinx already installed." + # fi }