Add termux setup file (android)

This commit is contained in:
Yisus7u7 2021-06-16 02:30:45 -05:00 committed by GitHub
commit ef3c334671
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

17
setup-termux.sh Normal file
View file

@ -0,0 +1,17 @@
#!/bin/bash
#this script will configure hydra in termux
TERMUX_PREFIX="/data/data/com.termux/files/usr"
#required dependencies
pkg update && pkg upgrade
pkg install -y x11-repo
pkg install -y clang make openssl openssl-tool wget openssh coreutils gtk2 gtk3
#compile hydra
./configure --prefix=$TERMUX_PREFIX
make
make install