Skip to content

Instantly share code, notes, and snippets.

@RichVRed
Forked from jtilly/install.sh
Last active November 4, 2018 14:40
Show Gist options
  • Save RichVRed/bd0a200b8f73d8f8d6fea1f66e1187ca to your computer and use it in GitHub Desktop.
Save RichVRed/bd0a200b8f73d8f8d6fea1f66e1187ca to your computer and use it in GitHub Desktop.
Install QCacheGrind on Ubuntu
#!/bin/bash
sudo apt-get install qt5-default
wget http://kcachegrind.sourceforge.net/kcachegrind-0.7.4.tar.gz
tar xvf kcachegrind-0.7.4.tar.gz
cd kcachegrind-0.7.4
qmake && make
sudo install -m 755 qcachegrind/qcachegrind /usr/local/bin
sudo install -m 644 qcachegrind/qcachegrind.desktop \
/usr/local/share/applications/
sudo install -m 644 kcachegrind/hi32-app-kcachegrind.png \
/usr/local/share/icons/hicolor/32x32/apps/kcachegrind.png
sudo install -m 644 kcachegrind/hi48-app-kcachegrind.png \
/usr/local/share/icons/hicolor/48x48/apps/kcachegrind.png
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment