mirror of
https://github.com/9001/copyparty.git
synced 2025-08-17 17:12:13 -06:00
63 lines
1.1 KiB
Bash
Executable file
63 lines
1.1 KiB
Bash
Executable file
#!/bin/bash
|
|
set -e
|
|
|
|
_msg() { printf "$2"'\033[1;30m>\033[0;33m>\033[1m>\033[0m %s\n' "$1" >&2; }
|
|
imsg() { _msg "$1" ''; }
|
|
msg() { _msg "$1" \\n; }
|
|
|
|
##
|
|
## helper which installs termux packages
|
|
|
|
termux_upd=y
|
|
addpkg() {
|
|
t0=$(date +%s -r ~/../usr/var/cache/apt/pkgcache.bin 2>/dev/null || echo 0)
|
|
t1=$(date +%s)
|
|
|
|
[ $((t1-t0)) -gt 600 ] && {
|
|
msg "upgrading termux packages"
|
|
apt update
|
|
apt full-upgrade -y
|
|
}
|
|
msg "installing $1 from termux repos"
|
|
apt install -y $1
|
|
}
|
|
|
|
##
|
|
## ensure python is available
|
|
|
|
command -v python3 >/dev/null ||
|
|
addpkg python
|
|
|
|
##
|
|
## ensure virtualenv and dependencies are available
|
|
|
|
ve=$HOME/ve.copyparty
|
|
|
|
[ -e $ve/.ok ] || (
|
|
rm -rf $ve
|
|
|
|
msg "creating python3 virtualenv"
|
|
python3 -m venv $ve
|
|
|
|
msg "installing copyparty"
|
|
. $ve/bin/activate
|
|
pip install copyparty
|
|
|
|
deactivate
|
|
touch $ve/.ok
|
|
)
|
|
|
|
##
|
|
## add copyparty alias to bashrc
|
|
|
|
grep -qE '^alias copyparty=' ~/.bashrc 2>/dev/null || {
|
|
msg "adding alias to bashrc"
|
|
echo "alias copyparty='$HOME/copyparty-android.sh'" >> ~/.bashrc
|
|
}
|
|
|
|
##
|
|
## start copyparty
|
|
|
|
imsg "starting copyparty"
|
|
$ve/bin/python -m copyparty "$@"
|