mirror of
https://github.com/asdlokj1qpi233/subconverter.git
synced 2025-10-27 20:03:01 +00:00
Fix compatibility with some non-standard ShadowsocksR subscription. Add local rulesets from ConnersHua, lhie1 and NobyDa. Add support for conversion of some nodes between Shadowsocks and ShadowsocksR format. Add some build scripts. Optimize default groups and rulesets. Optimize Gist uploader. Optimize codes and performance.
18 lines
365 B
Bash
18 lines
365 B
Bash
#!/bin/bash
|
|
set -xe
|
|
|
|
apt update
|
|
apt install git cmake clang
|
|
apt isntall libevent libcurl openssl
|
|
|
|
git clone https://github.com/jbeder/yaml-cpp
|
|
cd yaml-cpp
|
|
cmake -DCMAKE_INSTALL_PREFIX=/data/data/com.termux/files/usr .
|
|
make install -j3
|
|
cd ..
|
|
|
|
git clone https://github.com/tencent/rapidjson
|
|
cd rapidjson
|
|
cp -r include/* /data/data/com.termux/files/usr/include/
|
|
cd ..
|