2019-01-26 07:54:56 +03:00
|
|
|
#
|
2021-01-05 13:17:11 +03:00
|
|
|
# Copyright (C) 2018-2021 QuasarApp.
|
2019-01-26 07:54:56 +03:00
|
|
|
# Distributed under the lgplv3 software license, see the accompanying
|
|
|
|
# Everyone is permitted to copy and distribute verbatim copies
|
|
|
|
# of this license document, but changing it is not allowed.
|
|
|
|
#
|
|
|
|
|
2018-09-13 13:51:17 +03:00
|
|
|
name: cqtdeployer # you probably want to 'snapcraft register <name>'
|
2021-10-27 09:34:40 +03:00
|
|
|
version: '1.5.4.8' # just for humans, typically '1.2+git' or '1.3.2'
|
2018-09-13 13:51:17 +03:00
|
|
|
summary: deploy your qt projects # 79 char long summary
|
|
|
|
description: |
|
|
|
|
Console app for deploy qt libs.
|
|
|
|
Key differences of this program
|
|
|
|
Performance-this program deploys the application several times faster (up to 10 seconds)
|
|
|
|
Flexibility-this application has flags that will help you configure the deployment as you need and your project
|
|
|
|
|
|
|
|
grade: stable # must be 'stable' to release into candidate/stable channels
|
2020-07-28 09:38:18 +03:00
|
|
|
confinement: strict # use 'strict' once you have the right plugs and slots
|
2021-06-05 20:41:27 +03:00
|
|
|
base: core18
|
2020-07-28 09:38:07 +03:00
|
|
|
icon: snap/gui/icon.png
|
2018-09-13 13:51:17 +03:00
|
|
|
apps:
|
|
|
|
cqtdeployer:
|
2020-10-14 21:14:14 +03:00
|
|
|
command: bash $SNAP/cqtdeployer.sh
|
2020-07-28 09:50:56 +03:00
|
|
|
plugs: [home, removable-media, process-control, system-backup]
|
2020-01-23 09:58:11 +03:00
|
|
|
|
2020-03-10 15:28:19 +03:00
|
|
|
cqt:
|
2020-10-14 21:14:14 +03:00
|
|
|
command: bash $SNAP/cqt.sh
|
2020-07-28 09:50:56 +03:00
|
|
|
plugs: [home, removable-media, process-control, system-backup]
|
2018-09-13 13:51:17 +03:00
|
|
|
|
|
|
|
parts:
|
|
|
|
cqtdeployer:
|
|
|
|
# See 'snapcraft plugins'
|
|
|
|
|
|
|
|
plugin: dump
|
2020-08-15 21:49:15 +03:00
|
|
|
source: QIFData/packages/cqtdeployer.1_5/data/1.5
|
2018-09-13 13:51:17 +03:00
|
|
|
|
2020-01-23 12:30:24 +03:00
|
|
|
stage-packages:
|
|
|
|
- libfreetype6
|
|
|
|
- libpng16-16
|
2020-11-27 14:05:17 +03:00
|
|
|
- dpkg
|
2021-04-20 14:21:48 +03:00
|
|
|
- libwayland-cursor0
|
2020-01-23 12:30:24 +03:00
|
|
|
|
2020-07-28 09:38:15 +03:00
|
|
|
|
2020-01-22 16:21:30 +03:00
|
|
|
qif:
|
|
|
|
plugin: dump
|
|
|
|
source: QIFData/packages/QIF/data/
|
|
|
|
|
2020-01-22 16:28:06 +03:00
|
|
|
override-stage: |
|
|
|
|
snapcraftctl stage
|
|
|
|
chmod 777 -R "$SNAPCRAFT_STAGE/QIF"
|
|
|
|
|
2020-10-14 17:55:30 +03:00
|
|
|
|