Skip to content

Instantly share code, notes, and snippets.

@lordhasyim
Forked from jtilly/install.sh
Created October 7, 2020 10:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lordhasyim/18c69a5c0019c77fa264a0be79ab3e36 to your computer and use it in GitHub Desktop.
Save lordhasyim/18c69a5c0019c77fa264a0be79ab3e36 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