2019-07-04 18:27:42 +00:00
|
|
|
if [ -z "$1" ]; then
|
|
|
|
INSTALL_LOC=/usr/local
|
|
|
|
else
|
|
|
|
INSTALL_LOC=${1}
|
|
|
|
fi
|
|
|
|
echo "Installing to ${INSTALL_LOC}"
|
|
|
|
if [ ! -f "${INSTALL_LOC}/lib/libta_lib.a" ]; then
|
2019-01-08 19:35:08 +00:00
|
|
|
tar zxvf ta-lib-0.4.0-src.tar.gz
|
2018-08-13 18:01:57 +00:00
|
|
|
cd ta-lib \
|
|
|
|
&& sed -i.bak "s|0.00000001|0.000000000000000001 |g" src/ta_func/ta_utility.h \
|
2021-05-01 12:13:21 +00:00
|
|
|
&& curl 'http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.guess;hb=HEAD' -o config.guess \
|
|
|
|
&& curl 'http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.sub;hb=HEAD' -o config.sub \
|
2019-07-04 18:27:42 +00:00
|
|
|
&& ./configure --prefix=${INSTALL_LOC}/ \
|
2021-05-01 12:13:21 +00:00
|
|
|
&& make -j$(nproc) \
|
2018-08-13 18:01:57 +00:00
|
|
|
&& which sudo && sudo make install || make install \
|
|
|
|
&& cd ..
|
2017-12-18 07:29:17 +00:00
|
|
|
else
|
2019-01-09 07:16:33 +00:00
|
|
|
echo "TA-lib already installed, skipping installation"
|
2017-12-18 07:29:17 +00:00
|
|
|
fi
|
2021-05-01 12:13:21 +00:00
|
|
|
# && sed -i.bak "s|0.00000001|0.000000000000000001 |g" src/ta_func/ta_utility.h \
|