-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathsnapcraft.yaml
More file actions
36 lines (36 loc) · 1.14 KB
/
snapcraft.yaml
File metadata and controls
36 lines (36 loc) · 1.14 KB
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
34
35
36
# See https://documentation.ubuntu.com/snapcraft/stable/reference/project-file/snapcraft-yaml
name: jsonschema
base: core24
adopt-info: jsonschema
title: JSON Schema CLI
summary: The command-line tool for working with JSON Schema
description: |
Covers formatting, linting, testing, bundling, and more for both local development and CI/CD pipelines.
license: AGPL-3.0-or-later
contact: hello@sourcemeta.com
donation: https://github.com/sponsors/sourcemeta
issues: https://github.com/sourcemeta/jsonschema/issues
source-code: https://github.com/sourcemeta/jsonschema
website: https://github.com/sourcemeta/jsonschema
grade: stable
confinement: strict
apps:
jsonschema:
command: usr/local/bin/jsonschema
completer: usr/local/share/bash-completion/completions/jsonschema
# Means users can only run it on HOME
plugs: [ home, network ]
parts:
jsonschema:
plugin: cmake
source: .
build-packages:
- g++-14
build-environment:
- CC: gcc-14
- CXX: g++-14
cmake-parameters:
- -DCMAKE_BUILD_TYPE:STRING=Release
override-pull: |
craftctl default
craftctl set version="$(tr -d '\n\r' < VERSION)"