Ubuntu Pastebin

Paste from Robert Jennings at Mon, 8 Aug 2016 23:04:04 +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
name: cloudprint
version: 1  # the version of the snap
summary: Google cloudprint proxy
description: Google cloudprint proxy from armooo@github
confinement: devmode  # use "strict" to enforce system access only via declared interfaces

apps:
  cloudprint:
    command: usr/bin/cloudprint
    plugs:
    - cups-control
    - network
    - network-bind

parts:
  cloudprint:  # Replace with a part name of your liking
    plugin: python2
    source: https://github.com/armooo/cloudprint.git
    source-type: git
    source-branch: master
    stage-packages:
    - libcups2-dev
Download as text