You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
DevOps-Bash-tools/setup/install_cliclick.sh

55 lines
1.2 KiB
Bash

#!/usr/bin/env bash
# vim:ts=4:sts=4:sw=4:et
#
# Author: Hari Sekhon
# Date: 2020-06-14 17:01:04 +0100 (Sun, 14 Jun 2020)
#
# https://github.com/HariSekhon/DevOps-Bash-tools
#
# License: see accompanying Hari Sekhon LICENSE file
#
# If you're using my code you're welcome to connect with me on LinkedIn and optionally send me feedback to help steer this or other code I publish
#
# https://www.linkedin.com/in/HariSekhon
#
# Installs CliClick on Mac OS X
#
# https://github.com/BlueM/cliclick
set -euo pipefail
[ -n "${DEBUG:-}" ] && set -x
#srcdir="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
VERSION="4.0.1"
if [ "$(uname -s)" != Darwin ]; then
echo "Operating System is not Mac, cannot install MouseTools which is for Mac, aborting..."
exit 0
fi
if type -P cliclick &>/dev/null; then
echo "CliClick already installed"
exit 0
fi
cd /tmp
wget -O "cliclick-$VERSION.zip" "https://github.com/BlueM/cliclick/archive/$VERSION.zip"
unzip -o "cliclick-$VERSION.zip"
cd "cliclick-$VERSION"
echo
echo "Building cliclick"
make
echo
mv -iv -- cliclick ~/bin
echo
rm -fr -- "cliclick-$VERSION" "cliclick-$VERSION.zip"
echo "cliclick is now available at ~/bin - ensure that location is in $PATH"