-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsnapcraft.yaml
51 lines (46 loc) · 1.49 KB
/
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
name: dm-tools # you probably want to 'snapcraft register <name>'
base: core24 # the base snap is the execution environment for this snap
version: '1.4.1' # just for humans, typically '1.2+git' or '1.3.2'
summary: Command-line tools for the lazy DM # 79 char long summary
description: |
dm-tools is a role-playing combat encounter tracker and NPC generator for
those who prefer a command line environment.
Features auto-population of stats for SRD monsters, randomly-generated pocket
items for NPCs, and several flavors of name generator algorithms.
Invoke the different tools in your terminal by running:
dm-tools.live-game, dm-tools.plebs, dm-tools.pockets, or dm-tools.taverns,
and make sure to make it full screen, otherwise it complains.
https://www.dm-tools.dev
https://github.com/codyshepherd/dm-tools
grade: stable # must be 'stable' to release into candidate/stable channels
confinement: strict # use 'strict' once you have the right plugs and slots
parts:
dm-tools:
plugin: python
source: .
apps:
live-game:
command: bin/live-game
environment:
LC_ALL: C.UTF-8
plugs:
- home
- network
plebs:
command: bin/plebs
environment:
LC_ALL: C.UTF-8
plugs:
- home
pockets:
command: bin/pockets
environment:
LC_ALL: C.UTF-8
plugs:
- home
taverns:
command: bin/taverns
environment:
LC_ALL: C.UTF-8
plugs:
- home