forked from platypush/platypush
- If a Python optional dependency is available as a system package on the target system, try and install it that route rather than pip. It's usually faster and it decreases the risk of breaking system packages. - Added support for apk dependencies in manifest files. This brings the number of distros officially supported by all the extensions to four: - Alpine - Arch - Debian - Ubuntu
20 lines
330 B
YAML
20 lines
330 B
YAML
manifest:
|
|
events: {}
|
|
install:
|
|
apk:
|
|
- py3-numpy
|
|
- py3-pillow
|
|
- ffmpeg
|
|
pacman:
|
|
- python-numpy
|
|
- python-pillow
|
|
- ffmpeg
|
|
apt:
|
|
- python3-numpy
|
|
- python3-pillow
|
|
- ffmpeg
|
|
pip:
|
|
- numpy
|
|
- Pillow
|
|
package: platypush.plugins.camera.ffmpeg
|
|
type: plugin
|