Last active
October 5, 2023 15:18
-
-
Save stepbrobd/81d956ad5ac8f4c72595f3e2e54e2822 to your computer and use it in GitHub Desktop.
install spin and ispin
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
set -exuo pipefail | |
git clone --depth 1 https://github.com/nimble-code/spin.git ~/.spin | |
pushd ~/.spin | |
make | |
ln -fsv ~/.spin/Src/spin /usr/local/bin/spin | |
echo '#!/bin/bash | |
TK_SILENCE_DEPRECATION=1 ~/.spin/optional_gui/ispin.tcl' > ~/.spin/optional_gui/ispin | |
chmod +x ~/.spin/optional_gui/ispin | |
ln -fsv ~/.spin/optional_gui/ispin /usr/local/bin/ispin | |
popd |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment