summaryrefslogtreecommitdiffstats
path: root/plugins/README.md
blob: 803aab47ce3f588f1b6f83f840ef2e598e0a8420 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
### MXE Plugins

MXE lets you override the way packages are built and installed by offering
plugins mechanism. This directory contains a collection of example plugins and
experimental content. Enjoy!

*Note: the files here should be considered examples only and are unmaintained.*

##### Rolling your own plugin

The basic usage is to drop some `*.mk` files in a directory `foo/` and set
`MXE_PLUGIN_DIRS='foo/'` while invoking `make` like this:

```console
MXE_PLUGIN_DIRS=foo/ make libpng
```

If needed, you can also pass multiple directories by separating them with a
space: `MXE_PLUGIN_DIRS='foo1/ foo2/'`.

For details on `*.mk` contents, please consult the contents of this directory
and `src/*.mk`.