Last active
October 4, 2024 22:25
-
-
Save ryanpcmcquen/655cb3cc60f9d064738903e59504a5fd to your computer and use it in GitHub Desktop.
Install latest Textadept on Linux or Mac.
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/sh | |
# wget -N https://gist.githubusercontent.com/ryanpcmcquen/655cb3cc60f9d064738903e59504a5fd/raw/.installLatestTextadept.sh -P ~/ && bash ~/.installLatestTextadept.sh | |
# Maybe for later: | |
#TEXTADEPT_VERSION=$(curl https://foicica.com/textadept/feed | grep 'Download:' -A5 | grep '.osx.zip' | head -n1 | egrep -o "download/textadept_.*.osx.zip" | cut -d _ -f 2 | cut -d '"' -f 1 | sed 's/.osx.zip.*//g') | |
#TEXTADEPT_VERSION=$(curl https://github.com/orbitalquark/textadept/releases.atom | grep 'Download:' -A5 | grep '.osx.zip' | head -n1 | egrep -o "download/textadept_.*.osx.zip" | cut -d _ -f 2 | cut -d '"' -f 1 | sed 's/.osx.zip.*//g') | |
APP="textadept" | |
APPSHORTCUT="ta" | |
if [ "$(getconf LONG_BIT)" = "32" ]; then | |
PKGARCH="i386" | |
else | |
PKGARCH="x86_64" | |
fi | |
# Download the latest version and put it in the right place. | |
# Also, remove any other versions. | |
DOWNLOADS="$(curl https://api.github.com/repos/orbitalquark/textadept/releases/latest | grep browser_download_url)" | |
LINUX_ARCHIVE="$(echo ${DOWNLOADS} | grep -io '[^"]*linux[^"]*')" | |
MODULES_ARCHIVE="$(echo ${DOWNLOADS} | grep -io '[^"]*modules[^"]*')" | |
wget -N "${LINUX_ARCHIVE}" -P /tmp/ | |
wget -N "${MODULES_ARCHIVE}" -P /tmp/ | |
sudo rm -rf /opt/${APP}* | |
# Some distros (like Solus), have no /opt/! | |
sudo mkdir /opt/ | |
sudo tar xf "/tmp/$(basename ${LINUX_ARCHIVE})" -C /opt/ | |
sudo mv /opt/${APP}* /opt/${APP} | |
unzip -u "/tmp/$(basename ${MODULES_ARCHIVE})" -d /tmp/ | |
sudo cp -ru /tmp/${APP}_*modules/modules/* /opt/${APP}/modules/ | |
rm -rf /tmp/${APP}_*modules/ | |
# Grab a script that adds ${APP} to the user's path. | |
# I use the /usr/local/bin/ script for now, | |
# but this may be useful in the future. | |
#sudo wget -N https://gist.githubusercontent.com/ryanpcmcquen/655cb3cc60f9d064738903e59504a5fd/raw/${APP}.sh -P /etc/profile.d/ | |
# Grab a script that will conveniently launch ${APP} from the command line with arguments: | |
sudo wget -N https://gist.githubusercontent.com/ryanpcmcquen/655cb3cc60f9d064738903e59504a5fd/raw/${APPSHORTCUT} -P /usr/local/bin/ | |
sudo chmod +x /usr/local/bin/${APPSHORTCUT} | |
sudo cp /usr/local/bin/${APPSHORTCUT} /usr/bin/${APP} | |
# Get ${APP} to show up in menus: | |
sudo cp /opt/${APP}/src/${APP}.desktop /usr/share/applications/ | |
sudo cp /opt/${APP}/core/images/${APP}.svg /usr/share/pixmaps/ | |
# My config: | |
mkdir -p ~/.${APP}/ | |
wget -N https://raw.githubusercontent.com/ryanpcmcquen/linuxTweaks/master/.${APP}/init.lua -P ~/.${APP}/ |
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/sh | |
# wget -N https://gist.githubusercontent.com/ryanpcmcquen/655cb3cc60f9d064738903e59504a5fd/raw/.installLatestTextadeptMac.sh -P ~/ && bash ~/.installLatestTextadeptMac.sh | |
APP="textadept" | |
ALTAPPNAME="Textadept" | |
APPSHORTCUT="ta" | |
# Download the latest version and put it in the right place. | |
DOWNLOADS="$(curl https://api.github.com/repos/orbitalquark/textadept/releases/latest | grep browser_download_url)" | |
MAC_ARCHIVE="$(echo ${DOWNLOADS} | grep -io '[^"]*macos[^"]*')" | |
MODULES_ARCHIVE="$(echo ${DOWNLOADS} | grep -io '[^"]*modules[^"]*')" | |
wget -N "${MAC_ARCHIVE}" -P /tmp/ | |
wget -N "${MODULES_ARCHIVE}" -P /tmp/ | |
# The main app: | |
unzip -u "/tmp/$(basename ${MAC_ARCHIVE})" -d /tmp/ | |
cp -R /tmp/${APP}_*.osx/*.app /Applications/ | |
# Modules: | |
unzip -u "/tmp/$(basename ${MODULES_ARCHIVE})" -d /tmp/ | |
cp -R /tmp/${APP}_*modules/modules/* /Applications/${ALTAPPNAME}.app/Contents/Resources/modules/ | |
# Command line launcher: | |
mv /tmp/${APP}_*.osx/${APPSHORTCUT} /usr/local/bin/ | |
chmod +x /usr/local/bin/${APPSHORTCUT} | |
# My config: | |
mkdir -p ~/.${APP}/ | |
wget -N https://raw.githubusercontent.com/ryanpcmcquen/linuxTweaks/master/.${APP}/init.lua -P ~/.${APP}/ | |
# Cleanup: | |
rm -rf /tmp/${APP}_* |
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/sh | |
/opt/textadept/textadept "$@" & |
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/sh | |
export PATH="${PATH}:/opt/textadept" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment