~laney/ubuntu-terminal-app/notshowin-unity

« back to all changes in this revision

Viewing changes to snapcraft.yaml

Adds snapcraft.yaml to do builds of ubuntu-terminal-app.
Also fixes broken xenial build - thanks to Dan Chapman.

Approved by David Planella, Jenkins Bot.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
name: ubuntu-terminal-app
 
2
version: 0.7.207
 
3
summary: Ubuntu Terminal app
 
4
description: The terminal app for all Ubuntu devices.
 
5
 
 
6
confinement: devmode
 
7
 
 
8
apps:
 
9
  ubuntu-terminal-app:
 
10
    command: desktop-launch $SNAP/usr/lib/*/qt5/bin/qmlscene $SNAP/qml/ubuntu-terminal-app.qml
 
11
    plugs: [unity7, opengl, network, network-bind, home]
 
12
 
 
13
parts:
 
14
  terminal:
 
15
    plugin: cmake
 
16
    configflags: [-DCMAKE_INSTALL_PREFIX=/usr, -DCLICK_MODE=on]
 
17
    source: .
 
18
    build-packages:
 
19
      - build-essential
 
20
      - cmake
 
21
      - gettext
 
22
      - intltool
 
23
      - python3
 
24
      - qtbase5-dev
 
25
      - qtdeclarative5-dev
 
26
      - libqtermwidget5-0-dev
 
27
      - libpam0g-dev
 
28
    stage-packages:
 
29
      - ubuntu-sdk-libs
 
30
      - qtubuntu-desktop
 
31
      - libqtermwidget5-0
 
32
      - libqt5systeminfo5
 
33
      - qml-module-qtsysteminfo
 
34
    snap:
 
35
      - -usr/share/doc
 
36
      - -usr/include
 
37
    after: [desktop-qt5]