cwtch-ui/fetch-tor.sh

15 lines
700 B
Bash
Raw Permalink Normal View History

2021-06-24 23:10:45 +00:00
#!/bin/sh
cd linux
2023-11-25 18:11:07 +00:00
wget https://git.openprivacy.ca/openprivacy/buildfiles/raw/branch/master/tor/tor-0.4.8.9-linux-x86_64.tar.gz -O tor.tar.gz
tar -xzf tor.tar.gz
cd ..
2021-06-24 23:10:45 +00:00
mkdir -p android/app/src/main/jniLibs/arm64-v8a
2023-11-25 18:11:07 +00:00
wget https://git.openprivacy.ca/openprivacy/buildfiles/raw/branch/master/tor/tor-0.4.8.9-android-arm64 -O android/app/src/main/jniLibs/arm64-v8a/libtor.so
2021-06-24 23:10:45 +00:00
chmod a+x android/app/src/main/jniLibs/arm64-v8a/libtor.so
mkdir -p android/app/src/main/jniLibs/armeabi-v7a
2023-11-25 18:11:07 +00:00
wget https://git.openprivacy.ca/openprivacy/buildfiles/raw/branch/master/tor/tor-0.4.8.9-android-arm7 -O android/app/src/main/jniLibs/armeabi-v7a/libtor.so
2021-06-24 23:10:45 +00:00
chmod a+x android/app/src/main/jniLibs/armeabi-v7a/libtor.so