Commit e4053d591b052bd4acc362b45068d0eb96bf60e8
1 parent
cb055103
Exists in
master
and in
1 other branch
Corrige variável DIR no core_install.sh
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,7 +9,7 @@ if [ ! -d "$DIR" ] ; then | ||
9 | mkdir $DIR | 9 | mkdir $DIR |
10 | fi | 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,11 +38,11 @@ wget http://150.165.204.30:8080/core/linux/ffmpeg-vlibras.tar.gz | ||
38 | #| EXTRACT DEPENDENCIES | | 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 | 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 | 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,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 | #| YASM | | 51 | #| YASM | |
52 | #|================================================================| | 52 | #|================================================================| |
53 | 53 | ||
54 | -cd DIR/yasm-1.2.0 | 54 | +cd $DIR/yasm-1.2.0 |
55 | chmod +x configure | 55 | chmod +x configure |
56 | ./configure | 56 | ./configure |
57 | make | 57 | make |
@@ -113,4 +113,4 @@ sudo make install | @@ -113,4 +113,4 @@ sudo make install | ||
113 | cd .. | 113 | cd .. |
114 | cd lavid-lib | 114 | cd lavid-lib |
115 | make | 115 | make |
116 | -sudo make install | ||
117 | \ No newline at end of file | 116 | \ No newline at end of file |
117 | +sudo make install |