The Pixman package contains a library that provides low-level pixel manipulation features such as image compositing and trapezoid rasterization.
Download (HTTP): https://www.cairographics.org/releases/pixman-0.44.0.tar.gz
Install Pixman by running the following commands:
mkdir build && cd build && meson setup --prefix=/usr --buildtype=release .. && ninja
To test the results, issue: ninja test.
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.