snapcraft.yaml 777 B

123456789101112131415161718192021222324252627282930313233343536
  1. name: home-assistant-toolbox
  2. base: core20
  3. version: '0.2'
  4. summary: "Extend your Home Assistant (home-assistant-snap)"
  5. description: |
  6. Toolbox contains executables that extends functionality
  7. to you home-assistant-snap installation.
  8. The following tools are included:
  9. - cURL
  10. - make (build-essential)
  11. + More to come, and feel free to come up with suggestions!
  12. Requires home-assistant-snap revision 71 or later!
  13. grade: stable
  14. confinement: strict
  15. slots:
  16. bin:
  17. interface: content
  18. content: executables
  19. source:
  20. read:
  21. - $SNAP/bin
  22. - $SNAP/etc
  23. - $SNAP/lib
  24. - $SNAP/usr
  25. parts:
  26. home-assistant-toolbox:
  27. plugin: dump
  28. source: ./src
  29. source-type: local
  30. stage-packages:
  31. - curl
  32. - build-essential