-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsnapcraft.yaml
35 lines (26 loc) · 858 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
34
35
name: grex
adopt-info: grex
summary: easily create regx from input.
description: |
grex is a library as well as a command-line utility that is meant to simplify the often complicated and tedious task of creating regular expressions. It does so by automatically generating a single regular expression from user-provided test cases. The resulting expression is guaranteed to match the test cases which it was generated from.
base: core20
grade: stable
confinement: strict
license: MIT
architectures:
- amd64
- arm64
apps:
grex:
command: bin/grex
plugs:
- home
- removable-media
parts:
grex:
source: https://github.com/pemistahl/grex
source-type: git
plugin: rust
override-pull: |
snapcraftctl pull
snapcraftctl set-version "$(git describe --tags `git rev-list --tags --max-count=1`)"