Ubuntu Pastebin

Paste from thomi at Wed, 6 Jul 2016 20:29:45 +0000

Download as text
 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
name: sofastats
version: 1.4.6
summary: Statistics Open For All
description: This is my-snap's description  # a longer description for the snap
confinement: devmode  # use "strict" to enforce system access only via declared interfaces

apps:
  sofa:
   command: usr/bin/sofa
  busybox:
    command: busybox

parts:
  sofa:
    plugin: python2
    source: /home/thomi/code/sofastatistics

  wxpython:
    plugin: wxpython
    # configflags:
    #   - CXXFLAGS=-std=c++11
    # source: http://downloads.sourceforge.net/project/wxpython/wxPython/2.9.5.0/wxPython-src-2.9.5.0.tar.bz2
    source: /home/thomi/Downloads/wxPython-src-2.9.5.0.tar.bz2
    build-packages:
      - libglib2.0-dev
      - libgtk2.0-dev
      - libnotify-dev
      - libwebkit-dev
      - libgstreamer0.10-dev
      - libgstreamer-plugins-base0.10-dev
      - gstreamer0.10-plugins-base
    stage-packages:
      - libgtk2.0-0
      - gstreamer0.10-plugins-base

  busybox:
    plugin: nil
    stage-packages:
      - busybox
Download as text