1# simply run:
2
3qmake
4make
5
6# note: maybe your QT installation only provides
7# qmake-xx (not qmake). That may be ok as long as
8# qmake-xx -v shows something like:
9# "Using Qt version 5.2.x" or higher versions
10# in this case run:
11# qmake-xx
12# make
13#
14# in case of having multiple QT/qmake versions installed,
15# and QT5 isn't the default one, choose the QT5 one and run:
16# /path/to/qt5-version-of/qmake
17# make
18
19# to install:
20cp colorcode /usr/bin/
21
22# to uninstall:
23rm /usr/bin/colorcode
24
25# If you are still using QT version 4, look
26# for the latest QT 4 version of ColorCode at:
27# http://colorcode.laebisch.com/download
28