Install dependencies for libmypaint
masterDepending on your Linux distribution, install the necessary development libraries and build tools to compile libmypaint.
Debian and derivatives
For a standard configuration:
apt install -y build-essential
apt install -y libjson-c-dev libgirepository1.0-dev libglib2.0-devIf building from git, add:
apt install -y python autotools-dev intltool gettext libtoolRed Hat and derivatives (e.g., CentOS 7)
For a minimal installation:
yum install -y gcc gobject-introspection-devel json-c-devel glib2-develIf building from git, add:
yum install -y git python autoconf intltool gettext libtoolOpenSUSE
For a fresh Tumbleweed environment:
zypper install gcc13 gobject-introspection-devel libjson-c-devel glib2-develIf building from git, add:
zypper install git python311 autoconf intltool gettext-tools libtool# Example for Debian
apt install -y build-essential
apt install -y libjson-c-dev libgirepository1.0-dev libglib2.0-dev