cool-retro-term/snap/snapcraft.yaml

72 lines
2.1 KiB
YAML
Raw Normal View History

2018-03-06 08:17:45 +01:00
name: cool-retro-term # check to see if it's available
2019-01-17 22:47:38 +01:00
version: '1.1.1' # this is freakin' awesome
summary: cool-retro-term is a cool and retro terminal emulator. # 79 char long summary
2018-03-06 08:17:45 +01:00
description: |
cool-retro-term is a terminal emulator which mimics the look and feel of the old cathode tube screens. It has been designed to be eye-candy, customizable, and reasonably lightweight.
2018-03-06 08:17:45 +01:00
grade: stable # must be 'stable' to release into candidate/stable channels
2019-01-17 22:47:38 +01:00
confinement: classic # use 'strict' once you have the right plugs
2018-03-06 08:17:45 +01:00
2019-01-18 00:34:34 +01:00
base: core18
2018-03-06 08:17:45 +01:00
apps:
cool-retro-term:
command: bin/desktop-launch $SNAP/usr/bin/cool-retro-term
2018-03-06 08:17:45 +01:00
desktop: usr/share/applications/cool-retro-term.desktop
environment:
QML2_IMPORT_PATH: $SNAP/usr/lib/x86_64-linux-gnu/qt5/qml
2018-03-09 23:39:16 +01:00
parts:
2019-01-18 00:34:34 +01:00
desktop-qt5:
source: https://github.com/ubuntu/snapcraft-desktop-helpers.git
source-subdir: qt
plugin: make
make-parameters: ["FLAVOR=qt5"]
build-packages:
- build-essential
- qtbase5-dev
- dpkg-dev
stage-packages:
- libxkbcommon0
- ttf-ubuntu-font-family
- dmz-cursor-theme
- light-themes
- adwaita-icon-theme
- gnome-themes-standard
- shared-mime-info
- libqt5gui5
- libgdk-pixbuf2.0-0
- libqt5svg5 # for loading icon themes which are svg
- try: [appmenu-qt5] # not available on core18
- locales-all
- xdg-user-dirs
- fcitx-frontend-qt5
2018-03-09 23:39:16 +01:00
my-part:
2018-11-18 04:25:35 +01:00
source: https://github.com/Swordfish90/cool-retro-term
2018-03-09 23:39:16 +01:00
source-type: git
plugin: qmake # See 'snapcraft plugins'
qt-version: qt5
after: [desktop-qt5]
2019-01-18 00:34:34 +01:00
2018-03-06 08:17:45 +01:00
build-packages:
- build-essential
- qmlscene
- qt5-qmake
- qt5-default
- qtdeclarative5-dev
stage-packages:
- qmlscene
- qml-module-qtquick-controls
2019-01-18 00:34:34 +01:00
- qml-module-qtquick2
- qml-module-qtgraphicaleffects
2018-03-06 08:17:45 +01:00
- qml-module-qtquick-dialogs
2019-01-18 00:34:34 +01:00
- qml-module-qtquick-localstorage
- qml-module-qtquick-window2
2018-03-10 00:06:19 +01:00
- libgl1-mesa-dev
2018-11-17 00:49:22 +01:00
- qtdeclarative5-dev-tools
2018-11-21 18:01:11 +01:00
- qml-module-qtquick-extras
- qml-module-qt-labs-settings
- qml-module-qt-labs-folderlistmodel
2019-01-18 00:34:34 +01:00