Commit 8023976f475c403e2ffcf91433448abc2f42902f

Authored by Erickson Silva
1 parent 609cf5c9
Exists in master and in 1 other branch devel

Modifica core_install para utilizar o dict_update

Showing 1 changed file with 4 additions and 5 deletions   Show diff stats
core_install.sh
... ... @@ -3,7 +3,6 @@
3 3 echo -e "\n\033[32m##### Iniciando a instalação VLibras-Core #####\033[0m\n"
4 4  
5 5 DIR=$HOME/vlibras-libs
6   -BUNDLES=$HOME/unityVideo/videoCreator_Data
7 6  
8 7 if [ ! -d "$DIR" ] ; then
9 8 mkdir $DIR
... ... @@ -22,7 +21,6 @@ sudo pip install pyvirtualdisplay
22 21 cd ~/vlibras-libs
23 22  
24 23 wget http://150.165.204.30:8080/core/linux/unityVideo.tar.gz
25   -wget http://150.165.204.30:8080/core/linux/Bundles.tar.gz
26 24 wget http://150.165.204.30:8080/core/linux/yasm-1.2.0.tar.gz
27 25 wget http://150.165.204.30:8080/core/linux/jlibcpp-1.5.0.tar.gz
28 26 wget http://150.165.204.30:8080/core/linux/julius-4.3.1.tar.gz
... ... @@ -32,14 +30,15 @@ wget http://150.165.204.30:8080/core/linux/ffmpeg-vlibras.tar.gz
32 30 echo -e "\n\033[32m##### Extraindo #####\033[0m\n"
33 31  
34 32 tar -xf unityVideo.tar.gz -C $HOME
35   -tar -xf Bundles.tar.gz -C $BUNDLES
36 33 tar -xf ffmpeg-vlibras.tar.gz
37 34 tar -xf yasm-1.2.0.tar.gz
38 35 tar -xf jlibcpp-1.5.0.tar.gz
39 36 tar -xf julius-4.3.1.tar.gz
40 37 tar -xf lavid-lib.tar.gz
41 38  
42   -echo -e "\n\033[32m##### Instalando dependências #####\033[0m\n"
  39 +echo -e "\n\033[32m##### Baixando sinais #####\033[0m\n"
  40 +
  41 +./dict_update.sh
43 42  
44 43 echo -e "\n\033[32m##### Instalando Yasm #####\033[0m\n"
45 44 cd yasm-1.2.0
... ... @@ -89,4 +88,4 @@ sudo make install
89 88  
90 89 cd ..
91 90 rm ffmpeg-vlibras.tar.gz yasm-1.2.0.tar.gz jlibcpp-1.5.0.tar.gz julius-4.3.1.tar.gz lavid-lib.tar.gz
92   -echo -e "\n\033[32m##### Instalação Finalizada! #####\033[0m\n"
93 91 \ No newline at end of file
  92 +echo -e "\n\033[32m##### Instalação Finalizada! #####\033[0m\n"
... ...