snapcraft.yaml 749 B

1234567891011121314151617
  1. name: my-snap-name # you probably want to 'snapcraft register <name>'
  2. base: core22 # the base snap is the execution environment for this snap
  3. version: '0.1' # just for humans, typically '1.2+git' or '1.3.2'
  4. summary: Single-line elevator pitch for your amazing snap # 79 char long summary
  5. description: |
  6. This is my-snap's description. You have a paragraph or two to tell the
  7. most important story about your snap. Keep it under 100 words though,
  8. we live in tweetspace and your description wants to look good in the snap
  9. store.
  10. grade: devel # must be 'stable' to release into candidate/stable channels
  11. confinement: devmode # use 'strict' once you have the right plugs and slots
  12. parts:
  13. my-part:
  14. # See 'snapcraft plugins'
  15. plugin: nil