The Colord GTK package contains GTK+ bindings for Colord.
This package is known to build and work properly using an LFS 12.4 platform.
Download (HTTP): https://www.freedesktop.org/software/colord/releases/colord-gtk-0.3.1.tar.xz
Download MD5 sum: d436740c06e42af421384f16b2a9a0a7
Download size: 24 KB
Estimated disk space required: 2.1 MB
Estimated build time: less than 0.1 SBU
GLib-2.84.4 (with GObject Introspection), GTK-4.18.6, and Vala-0.56.18
docbook-xml-5.0, docbook-xsl-ns-1.79.2, libxslt-1.1.43 (to build the man page), and GTK-Doc-1.34.0
![[Warning]](../images/warning.png) 
          If building the documentation ninja -j1 must be used.
Install Colord GTK by running the following commands:
mkdir build &&
cd    build &&
meson setup --prefix=/usr       \
            --buildtype=release \
            -D gtk4=true        \
            -D vapi=true        \
            -D docs=false       \
            -D man=false        \
            ..                  &&
ninja
        If docbook-xml-5.0, docbook-xsl-ns-1.79.2, and libxslt-1.1.43 are installed, build the man page:
sed '/class="manual"/i \
     <refmiscinfo class="source">colord-gtk</refmiscinfo>' \
    -i ../man/*.xml &&
meson configure -D man=true &&
ninja
        To test the results, issue: ninja test. The tests need to be run from an X session, and may require a color profile for your primary display.
          Now, as the root user:
        
ninja install
          --buildtype=release:
          Specify a buildtype suitable for stable releases of the package, as
          the default may produce unoptimized binaries.
        
          -D vapi=true: This switch
          enables building of the Vala bindings. Remove this switch if you
          don't have Vala-0.56.18 installed.
        
          -D gtk4=true: This switch
          enables building the GTK-4 bindings for colord. Set this option to
          'false' if you do not have GTK-4.18.6 installed.
        
          -D docs=false: This switch
          disables building gtk-doc based documentation. Even if gtk-doc is
          installed, you will need the namespaced versions of the Docbook XSL
          stylesheets.