Files
flameshot/travis/linux_install.sh
Alfredo Ramos d09580b873 Optimize and use SVG images where possible (#281)
SVG images have been optimized with svgo, this will slightly reduce package size though the main reason for this was to remove unneeded markup.

Image paths have been changed and merged, now the directory tree looks like this:

img
├── app
├── material
│   ├── black
│   └── white
└── preview

The reason to merge the paths is to avoid duplicate files for buttons and configuration.

SVG icons are used by default now, PNG images have not been deleted from the images directory, but they were deleted from the graphics.qrc resource file.

All image paths were updated accordingly, except in the tray icon, I could not make it work using the SVG image.
2018-07-24 00:43:01 +02:00

28 lines
631 B
Bash
Executable File

#!/bin/bash --
set -e
if [[ "${DIST}" == "trusty" ]]; then
sudo apt-get install -qq build-essential git
sudo -E apt-get -yq \
--no-install-suggests --no-install-recommends --force-yes \
install openssl libssl-dev
#sudo -E apt-get -yq \
# --no-install-suggests --no-install-recommends --force-yes \
# install libgl1-mesa-dev
sudo -E apt-get -yq \
--no-install-suggests --no-install-recommends --force-yes \
install tree
sudo apt-get install -qq gcc-4.9 g++-4.9
# Install qt5.3.2
sudo apt-get -y install qt53base qt53tools qt53svg
# Install fcitx-frontend-qt5
sudo apt-get -y install fcitx-frontend-qt5
fi