Commit f26b2ff81c56ac9179d2de35f03a05607324b140
Exists in
master
and in
1 other branch
Merge branch 'devel' of git.lavid.ufpb.br:vlibras-core into devel
Showing
1 changed file
with
8 additions
and
8 deletions
Show diff stats
core_install.sh
... | ... | @@ -9,7 +9,7 @@ if [ ! -d "$DIR" ] ; then |
9 | 9 | mkdir $DIR |
10 | 10 | fi |
11 | 11 | |
12 | -cd DIR | |
12 | +cd $DIR | |
13 | 13 | |
14 | 14 | |
15 | 15 | #|================================================================| |
... | ... | @@ -38,11 +38,11 @@ wget http://150.165.204.30:8080/core/linux/ffmpeg-vlibras.tar.gz |
38 | 38 | #| EXTRACT DEPENDENCIES | |
39 | 39 | #|================================================================| |
40 | 40 | |
41 | -tar -xf ffmpeg-vlibras.tar.gz -C DIR | |
42 | -tar -xf yasm-1.2.0.tar.gz -C DIR | |
43 | -tar -xf jlibcpp-1.5.0.tar.gz -C DIR | |
44 | -tar -xf julius-4.3.1.tar.gz -C DIR | |
45 | -tar -xf lavid-lib.tar.gz -C DIR | |
41 | +tar -xf ffmpeg-vlibras.tar.gz -C $DIR | |
42 | +tar -xf yasm-1.2.0.tar.gz -C $DIR | |
43 | +tar -xf jlibcpp-1.5.0.tar.gz -C $DIR | |
44 | +tar -xf julius-4.3.1.tar.gz -C $DIR | |
45 | +tar -xf lavid-lib.tar.gz -C $DIR | |
46 | 46 | |
47 | 47 | 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 |
48 | 48 | |
... | ... | @@ -51,7 +51,7 @@ rm ffmpeg-vlibras.tar.gz yasm-1.2.0.tar.gz jlibcpp-1.5.0.tar.gz julius-4.3.1.tar |
51 | 51 | #| YASM | |
52 | 52 | #|================================================================| |
53 | 53 | |
54 | -cd DIR/yasm-1.2.0 | |
54 | +cd $DIR/yasm-1.2.0 | |
55 | 55 | chmod +x configure |
56 | 56 | ./configure |
57 | 57 | make |
... | ... | @@ -113,4 +113,4 @@ sudo make install |
113 | 113 | cd .. |
114 | 114 | cd lavid-lib |
115 | 115 | make |
116 | -sudo make install | |
117 | 116 | \ No newline at end of file |
117 | +sudo make install | ... | ... |