-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsnapcraft.yaml
41 lines (41 loc) · 1018 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
36
37
38
39
40
41
name: qtchildid
version: '1.0-beta'
summary: QT4-based Child ID System
description: |
QT4-based Child ID system used to conduct Child ID events. It allows
you to register a child, take fingerprints and print IDs containing
relevant data in case of a child abduction scenario. The data is
deleted after each entry and not stored remotely at any point.
type: app
grade: stable
confinement: strict
apps:
qtchildid:
command: desktop-launch QtChildID
plugs:
- network
- camera
- x11
- raw-usb
parts:
app:
plugin: qmake
source: .
qt-version: qt4
project-files:
- QtChildID.pro
stage-packages:
- libqtgui4
- libfprint0
- libpoppler-qt4-4
- libopencv-highgui2.4v5
- libopencv-core2.4v5
build-packages:
- qt4-default
- libopencv-dev
- libpoppler-qt4-dev
- libfprint-dev
install: |
mkdir $SNAPCRAFT_PART_INSTALL/bin
cp QtChildID $SNAPCRAFT_PART_INSTALL/bin/
after: [desktop-qt4]