snapcraft.yaml 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. name: home-assistant-snap
  2. version: '0.112.3'
  3. summary: Open source home automation that puts local control and privacy first
  4. description: |
  5. Home Assistant is a home automation platform running on Python 3.
  6. It is able to track and control all devices at home and offer a
  7. platform for automating control.
  8. base: core20
  9. grade: stable
  10. confinement: strict
  11. apps:
  12. hass:
  13. command: bin/hass --config $SNAP_DATA
  14. daemon: simple
  15. restart-condition: always
  16. plugs: [network, network-bind]
  17. parts:
  18. homeassistant:
  19. plugin: python-wot-plugin
  20. source: https://github.com/home-assistant/core.git
  21. source-tag: ${SNAPCRAFT_PROJECT_VERSION}
  22. python-packages:
  23. - setuptools
  24. - wheel
  25. - Cython
  26. build-packages:
  27. - python3
  28. - python3-dev
  29. - pkg-config
  30. - autoconf
  31. - build-essential
  32. - cython3
  33. - ffmpeg
  34. - libavcodec-dev
  35. - libavdevice-dev
  36. - libavfilter-dev
  37. - libavformat-dev
  38. - libavresample-dev
  39. - libavutil-dev
  40. - libffi-dev
  41. - libglib2.0-dev
  42. - libglu1-mesa-dev
  43. - libjpeg-dev
  44. - libopenzwave1.5-dev
  45. - libssl-dev
  46. - libswscale-dev
  47. - libudev-dev
  48. - libxml2-dev
  49. - libxslt1-dev
  50. - zlib1g-dev
  51. requirements:
  52. - requirements_all.txt
  53. constraints:
  54. - homeassistant/package_constraints.txt