add the scripts

This commit is contained in:
a-bad-dev 2026-06-03 01:25:28 -03:00
commit fcecf1a04b
12 changed files with 490 additions and 0 deletions

17
cloakcatcher/Makefile Executable file
View file

@ -0,0 +1,17 @@
all_linux:
sudo apt install python3 python3-requests python3-pip -y
pip3 install pyinstaller --break-system-packages
python3 -m PyInstaller -F -n"CloakCatcher" main.py
mkdir -p bin/
mv -f dist/CloakCatcher bin/
cp -f cloakcatcher.conf bin/
clean:
rm -rf dist/ build/ __pycache__/ CloakCatcher.spec
reset:
rm -rf bin/
echo "" > cloakcatcher.conf