diff --git a/tools/build_talib_from_source.bash b/tools/build_talib_from_source.bash index 22c1710e4..328630da7 100755 --- a/tools/build_talib_from_source.bash +++ b/tools/build_talib_from_source.bash @@ -8,8 +8,8 @@ fi DEPS_DIR=$1 -TA_LIB_TGZ="ta-lib-0.6.2-src.tar.gz" -TA_LIB_URL="https://github.com/TA-Lib/ta-lib/releases/download/v0.6.2/$TA_LIB_TGZ" +TA_LIB_TGZ="ta-lib-0.6.4-src.tar.gz" +TA_LIB_URL="https://github.com/TA-Lib/ta-lib/releases/download/v0.6.4/$TA_LIB_TGZ" if [[ -d $DEPS_DIR/lib ]]; then echo "Already built" @@ -20,7 +20,7 @@ wget -O "$DEPS_DIR/tmp/$TA_LIB_TGZ" $TA_LIB_URL pushd $DEPS_DIR/tmp tar -zxvf $TA_LIB_TGZ popd -pushd $DEPS_DIR/tmp/ta-lib-0.6.2 +pushd $DEPS_DIR/tmp/ta-lib-0.6.4 ./configure --prefix=$DEPS_DIR make install popd