forked from j-hc/revanced-magisk-module
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build-termux.sh
executable file
·87 lines (78 loc) · 2.67 KB
/
build-termux.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
#!/usr/bin/env bash
set -e
pr() { echo -e "\033[0;32m[+] ${1}\033[0m"; }
ask() {
local y
for ((n = 0; n < 3; n++)); do
pr "$1 [y/n]"
if read -r y; then
if [ "$y" = y ]; then
return 0
elif [ "$y" = n ]; then
return 1
fi
fi
pr "Asking again..."
done
return 1
}
pr "Ask for storage permission"
until
yes | termux-setup-storage >/dev/null 2>&1
ls /sdcard >/dev/null 2>&1
do sleep 1; done
if [ ! -f ~/.rvmm_"$(date '+%Y%m')" ]; then
pr "Setting up environment..."
yes "" | pkg update -y && pkg install -y openssl git wget jq openjdk-17 zip
: >~/.rvmm_"$(date '+%Y%m')"
fi
mkdir -p /sdcard/Download/revanced-magisk-module/
if [ ! -d revanced-magisk-module ]; then
pr "Cloning revanced-magisk-module."
git clone https://github.com/j-hc/revanced-magisk-module --depth 1
cd revanced-magisk-module
sed -i '/^enabled.*/d; /^\[.*\]/a enabled = false' config.toml
grep -q 'revanced-magisk-module' ~/.gitconfig 2>/dev/null \
|| git config --global --add safe.directory ~/revanced-magisk-module
else
cd revanced-magisk-module
pr "Checking for revanced-magisk-module updates"
git fetch
if git status | grep -q 'is behind\|fatal'; then
pr "revanced-magisk-module already is not synced with upstream."
pr "Cloning revanced-magisk-module. config.toml will be preserved."
cd ..
cp -f revanced-magisk-module/config.toml .
rm -rf revanced-magisk-module
git clone https://github.com/j-hc/revanced-magisk-module --recurse --depth 1
mv -f config.toml revanced-magisk-module/config.toml
cd revanced-magisk-module
fi
fi
[ -f ~/storage/downloads/revanced-magisk-module/config.toml ] \
|| cp config.toml ~/storage/downloads/revanced-magisk-module/config.toml
if ask "Open rvmm-config-gen to generate a config?"; then
am start -a android.intent.action.VIEW -d https://j-hc.github.io/rvmm-config-gen/
fi
printf "\n"
until
if ask "Open 'config.toml' to configure builds?\nAll are disabled by default, you will need to enable at first time building"; then
am start -a android.intent.action.VIEW -d file:///sdcard/Download/revanced-magisk-module/config.toml -t text/plain
fi
ask "Setup is done. Do you want to start building?"
do :; done
cp -f ~/storage/downloads/revanced-magisk-module/config.toml config.toml
./build.sh
cd build
PWD=$(pwd)
for op in *; do
[ "$op" = "*" ] && {
pr "glob fail"
exit 1
}
mv -f "${PWD}/${op}" ~/storage/downloads/revanced-magisk-module/"${op}"
done
pr "Outputs are available in /sdcard/Download/revanced-magisk-module folder"
am start -a android.intent.action.VIEW -d file:///sdcard/Download/revanced-magisk-module -t resource/folder
sleep 2
am start -a android.intent.action.VIEW -d file:///sdcard/Download/revanced-magisk-module -t resource/folder