-
Notifications
You must be signed in to change notification settings - Fork 0
/
snapcraft.yaml
33 lines (28 loc) · 983 Bytes
/
snapcraft.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# Metadata of the CLI tool.
name: tempscale
version: "2.0.3"
summary: CLI Tool
description: |
A CLI tool that converts temperature scale.
# Specifies the stability level of the Snap package.
grade: stable
# The runtine enviroment and foundational libraries that the Snap package will use.
base: core22
# Determines how much access your Snap has to the system its running.
# This runs in a sandbox with only the necessary access to system resources.
confinement: strict
# Defines the commands.
apps:
tempscale:
command: bin/tempscale
# Defines a set of files and instructions that make up the final Snap.
parts:
tempscale:
# Files to be included.
source: .
# Directly copy files from the source directory into the snap package.
# This does not perform any building or compilation.
plugin: dump
# Mapping to specify how files from the source directory should be placed within the snap.
organize:
"tempscale": "/usr/local/bin/tempscale"