Ubuntu Pastebin

Paste from chiluk at Thu, 15 Sep 2016 20:40:56 +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
name: file  # the name of the snap
version: 0  # the version of the snap
summary: Unix file utility  # 79 char long summary
description: Unix file utility  # a longer description for the snap
confinement: devmode  # use "strict" to enforce system access only via declared interfaces

apps:
    file:
        command: usr/bin/file

parts:
    file:  # Replace with a part name of your liking
        # Get more information about plugins by running
        # snapcraft help plugins
        # and more information about the available plugins
        # by running
        # snapcraft list-plugins
        plugin: nil 
        stage-packages:
          - file
          - libmagic1
        filesets:
          libmagic1:
            - etc/magic*
            - usr/*
          file:
            - usr/bin/file
        snap:
          - $libmagic1
          - $file
Download as text