mirror of
https://github.com/fergalmoran/flameshot.git
synced 2026-03-25 17:40:06 +00:00
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.
28 lines
631 B
Bash
Executable File
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
|