snapcraft.yaml 875 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  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. architectures:
  16. - build-on: amd64
  17. - build-on: arm64
  18. - build-on: armhf
  19. - build-on: ppc64el
  20. slots:
  21. bin:
  22. interface: content
  23. content: executables
  24. source:
  25. read:
  26. - $SNAP/bin
  27. - $SNAP/etc
  28. - $SNAP/lib
  29. - $SNAP/usr
  30. parts:
  31. home-assistant-toolbox:
  32. plugin: dump
  33. source: ./src
  34. source-type: local
  35. stage-packages:
  36. - curl
  37. - build-essential