libmypaint

MyPaint brush engine library for digital painting applications

brewmacoslinux
Try with needOr install directly
Source

About

MyPaint brush engine library

Examples

check if libmypaint is installed and linked correctly$ pkg-config --modversion libmypaint
find where libmypaint library files are located$ pkg-config --variable=libdir libmypaint
get compiler flags needed to link against libmypaint$ pkg-config --cflags --libs libmypaint
verify libmypaint development headers are installed$ ls $(pkg-config --variable=includedir libmypaint)
compile a program that uses the libmypaint brush library$ gcc myapp.c $(pkg-config --cflags --libs libmypaint) -o myapp