Color Management: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
|||
Line 15: | Line 15: | ||
== lprof == | == lprof == | ||
[http://lprof.sourceforge.net/ Homepage] | [http://lprof.sourceforge.net/ Homepage] | ||
Lprof does not included in slackbuilds repository. | |||
Requires: [https://slackware.pkgs.org/14.2/slackonly-i486/qt3-3.3.8b-i486-6_slonly.txz.html qt3], [https://slackbuilds.org/repository/14.2/libraries/vigra/ Vigra] | Requires: [https://slackware.pkgs.org/14.2/slackonly-i486/qt3-3.3.8b-i486-6_slonly.txz.html qt3], [https://slackbuilds.org/repository/14.2/libraries/vigra/ Vigra] | ||
Line 23: | Line 25: | ||
mkdir ~/software/lprof | mkdir ~/software/lprof | ||
scons PREFIX=~/software/lprof/ qt_directory=/opt/kde3/lib/qt3-3.3.8b/ | |||
In order to compile we need some tricks on source tree directory: | |||
find . -iname "*.c" -o -iname "*.cpp" -o -iname "*.h" | xargs sed -i 's/BOOL/bool/g' | |||
find . -iname "*.c" | xargs sed -i '/typedef long int bool/d' | |||
find . -iname "*.c" | xargs sed -i '1i typedef enum { FALSE, TRUE } bool;' | |||
Then | |||
scons PREFIX=~/software/lprof/ qt_directory=/opt/kde3/lib/qt3-3.3.8b/ install | |||
Revision as of 11:52, 16 July 2017
Color management and calibration software
- colord-gtk
- xcalib
- iccprofiles
- oyranos
- gnome-color-manager
- DisplayCAL
- monica
Colord
lprof
Lprof does not included in slackbuilds repository.
Installation
Create directory for installation. In my case:
mkdir ~/software/lprof
In order to compile we need some tricks on source tree directory:
find . -iname "*.c" -o -iname "*.cpp" -o -iname "*.h" | xargs sed -i 's/BOOL/bool/g' find . -iname "*.c" | xargs sed -i '/typedef long int bool/d' find . -iname "*.c" | xargs sed -i '1i typedef enum { FALSE, TRUE } bool;'
Then
scons PREFIX=~/software/lprof/ qt_directory=/opt/kde3/lib/qt3-3.3.8b/ install
Page on Archwiki dedicated to this problem
Page in progress.