This module is a simple generator for pkg-config files.
To use this module, just do: pkg = import('pkgconfig'). The following function will then be available as pkg.generate(). You can, of course, replace the name pkg with anything else.
The generated file's properties are specified with the following keyword arguments.
libraries a list of built libraries (usually results of shared_library) that the user needs to link againstversion a string describing the version of this libraryname the name of this librarydescription a string describing the libraryfilebase, the base name to use for the pkg-config file, as an example the value of libfoo would produce a pkg-config file called libfoo.pcsubdirs which subdirs of include should be added to the header search path, for example if you install headers into ${PREFIX}/include/foobar-1, the correct value for this argument would be foobar-1requires list of strings to put in the Requires fieldrequires_private list of strings to put in the Requires.private fieldlibraries_private list of strings to put in the Libraries.private fieldinstall_dir the directory to install to, defaults to the value of option libdir followed by /pkgconfigextra_cflags a list of extra compiler flags to be added to the Cflags field after the header search pathvariables a list of strings with custom variables to add to the generated file. The strings must be in the form name=value and may reference other pkgconfig variables, e.g. datadir=${prefix}/share. The names prefix, libdir and installdir are reserved and may not be used.