docs: add mini-tutorial on plugins

pull/1366/head
rr- 8 years ago
parent 4135f9b122
commit 7f58b03f44

@ -1,5 +1,22 @@
### MXE Plugins
A collection of unsupported examples, experiments, tools, and utilities.
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!
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_PLUGINS_DIR=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`.

Loading…
Cancel
Save