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
# liri-browser installation script | |
# (C) Copyright 2015 by Tim Süberkrüb | |
# Modifications by Joshua Holland | |
set -e # This makes (haha) the script exit when make'ing liri-browser fails, but is good for debugging. | |
# Also, if a command can't complete, we avoid trying to continue and potentially clobbering stuff. | |
echo "Welcome to the liri-browser installer!" | |
mkdir liri-browser-installer && cd liri-browser-installer # Keep files in a separate directory, i.e. don't clog up ~/Downloads/ | |
# Download & install Qt 5.5 | |
echo -n "Is Qt 5.5 already installed? [y/n] " # If so, don't bother downloading the installer. |
NewerOlder