remote-evdev-python/setup
2022-07-21 22:03:55 +02:00

22 lines
539 B
Bash
Executable File

#!/bin/sh
git submodule init remote-evdev
git submodule update remote-evdev
PYTHON="$(whatis -w 'python3.1*' | cut -d " " -f1)"
PIP="$PYTHON -m pip"
$PIP install wheel
$PIP install ./remote-evdev
if [ -z ${var+x} ]; then
cp vm_guest_example.sh guest
cp vm_host_example.sh host
$PYTHON ./test-evdev.py
else if [[ "$1" == "guest" ]]; then
cp vm_guest_example.sh guest
$PYTHON ./test-evdev.py guest
else if [[ "$1" == "host" ]]; then
cp vm_host_example.sh host
$PYTHON ./test-evdev.py host
else
echo "unknown argument $1"
fi; fi; fi