From ebe68f64b183ac755e1224f706a7c04953710076 Mon Sep 17 00:00:00 2001 From: Tindy X <49061470+tindy2013@users.noreply.github.com> Date: Mon, 28 Feb 2022 10:58:41 +0800 Subject: [PATCH] Update config.termux.sh --- scripts/config.termux.sh | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/scripts/config.termux.sh b/scripts/config.termux.sh index 1408997..b83bb9b 100644 --- a/scripts/config.termux.sh +++ b/scripts/config.termux.sh @@ -3,7 +3,7 @@ set -xe apt update apt install -y git cmake clang pkg-config -apt install -y libevent libcurl openssl pcre2 python2 +apt install -y libevent libcurl openssl pcre2 git clone https://github.com/jbeder/yaml-cpp --depth=1 cd yaml-cpp @@ -37,3 +37,9 @@ install -m644 libcron/include/libcron/* $PREFIX/include/libcron/ install -d $PREFIX/include/date/ install -m644 libcron/externals/date/include/date/* $PREFIX/include/date/ cd .. + +git clone https://github.com/ToruNiina/toml11 --depth=1 +cd toml11 +cmake -DCMAKE_INSTALL_PREFIX=$PREFIX . +make install -j3 +cd ..