craft_parts.plugins.make_plugin module

The make plugin implementation.

class craft_parts.plugins.make_plugin.MakePlugin(*, properties, part_info)[source]

Bases: Plugin

A plugin useful for building make-based parts.

Make-based projects are projects that have a Makefile that drives the build.

This plugin always runs ‘make’ followed by ‘make install’, except when the ‘artifacts’ keyword is used.

This plugin uses the common plugin keywords as well as those for “sources”. For more information check the ‘plugins’ topic for the former and the ‘sources’ topic for the latter.

Additionally, this plugin uses the following plugin-specific keywords:

  • make-parameters (list of strings) Pass the given parameters to the make command.

Parameters:
get_build_commands()[source]

Return a list of commands to run during the build step.

Return type:

List[str]

get_build_environment()[source]

Return a dictionary with the environment to use in the build step.

Return type:

Dict[str, str]

get_build_packages()[source]

Return a set of required packages to install in the build environment.

Return type:

Set[str]

get_build_snaps()[source]

Return a set of required snaps to install in the build environment.

Return type:

Set[str]

properties_class

alias of MakePluginProperties

class craft_parts.plugins.make_plugin.MakePluginProperties(**data)[source]

Bases: PluginProperties, PluginModel

The part properties used by the make plugin.

Parameters:

data (Any) –

make_parameters: List[str]
source: str
classmethod unmarshal(data)[source]

Populate make properties from the part specification.

Parameters:

data (Dict[str, Any]) – A dictionary containing part properties.

Return type:

MakePluginProperties

Returns:

The populated plugin properties data object.

Raises:

pydantic.ValidationError – If validation fails.