-
Notifications
You must be signed in to change notification settings - Fork 18
/
snapcraft.yaml
48 lines (43 loc) · 1.05 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
name: kochmorse
version: git
grade: devel
#version: 3.5.1
#grade: stable
summary: A simple Morse tutor.
description: |
Kochmorse is a simple to use morse-code tutor using the so called Koch mehtod. It can not only
be used to learn the more-code but also to practice it using a random QSO simulator.
confinement: strict
base: core18
architectures:
- build-on: amd64
apps:
kochmorse:
command: kochmorse
desktop: usr/share/applications/kochmorse.desktop
plugs:
- desktop
- network
- audio-playback
- home
extensions:
- kde-neon
parts:
kochmorse:
plugin: cmake
build-packages:
- qtbase5-dev
- qtmultimedia5-dev
- qttools5-dev
- qttools5-dev-tools
stage-packages:
- libqt5svg5
- libqt5multimedia5
- libqt5multimedia5-plugins
- qt5dxcb-plugin
source: https://github.com/hmatuschek/kochmorse.git
source-type: git
#source-tag: "v$SNAPCRAFT_PROJECT_VERSION"
configflags:
- "-DCMAKE_INSTALL_PREFIX=/usr"
- "-DCMAKE_BUILD_TYPE=Release"