mirror of
https://github.com/QuasarApp/CQtDeployer.git
synced 2025-04-27 10:14:32 +00:00
All checks were successful
buildbot/IOSCMakeBuilder Build finished.
buildbot/AndroidBuilder_v8Qt6 Build finished.
buildbot/LinuxCMakeBuilderQt6 Build finished.
buildbot/AndroidBuilder_v7 Build finished.
buildbot/LinuxCMakeBuilder Build finished.
buildbot/DocsGenerator Build finished.
buildbot/Wasm32Builder Build finished.
buildbot/AndroidBuilder_v8 Build finished.
buildbot/WindowsCMakeBuilder Build finished.
buildbot/LinuxBuilder Build finished.
buildbot/WindowsBuilder Build finished.
57 lines
1.6 KiB
YAML
57 lines
1.6 KiB
YAML
#
|
|
# Copyright (C) 2018-2022 QuasarApp.
|
|
# 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.
|
|
#
|
|
|
|
name: cqtdeployer # you probably want to 'snapcraft register <name>'
|
|
version: '1.5.4.15' # just for humans, typically '1.2+git' or '1.3.2'
|
|
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
|
|
confinement: strict # use 'strict' once you have the right plugs and slots
|
|
base: core18
|
|
icon: snap/gui/icon.png
|
|
apps:
|
|
cqtdeployer:
|
|
command: bash $SNAP/cqtdeployer.sh
|
|
plugs: [home, removable-media, process-control, system-backup]
|
|
|
|
cqt:
|
|
command: bash $SNAP/cqt.sh
|
|
plugs: [home, removable-media, process-control, system-backup]
|
|
|
|
parts:
|
|
cqtdeployer:
|
|
# See 'snapcraft plugins'
|
|
|
|
plugin: dump
|
|
source: QIFData/packages/cqtdeployer.1_5/data/1.5
|
|
|
|
stage-packages:
|
|
- libfreetype6
|
|
- libpng16-16
|
|
- dpkg
|
|
- libwayland-cursor0
|
|
- libxcb-icccm4
|
|
- libxcb-image0
|
|
- libxcb-keysyms1
|
|
- libxcb-render-util0
|
|
- libxcb-xinerama0
|
|
|
|
qif:
|
|
plugin: dump
|
|
source: QIFData/packages/QIF/data/
|
|
|
|
override-stage: |
|
|
snapcraftctl stage
|
|
chmod 777 -R "$SNAPCRAFT_STAGE/QIF"
|
|
|
|
|