Hello there,
I’m new to snap and want to build an prebuild application, I wrote my own. So I downloaded ubuntu (normally using fedora), installed snapcraft and wrote the following snapcraft.yaml:
name: audiocuesheeteditor # Name must be lowercase in snap
base: core18 # the base snap is the execution environment for this snap
version: '2.4.2'
summary: Write audio cue sheets fast and efficient
description: |
Annoyed of writing your audio cue sheets via text editor? Here comes the solution! Audio Cuesheet Editor helps you editing your audio cuesheet file.
grade: devel # must be 'stable' to release into candidate/stable channels
confinement: devmode # use 'strict' once you have the right plugs and slots
parts:
audiocuesheeteditor:
plugin: dump
source: http://downloads.sourceforge.net/audiocuesheet/AudioCuesheetEditor-linux-x64-v$SNAPCRAFT_PROJECT_VERSION.zip
apps:
audiocuesheeteditor:
command: AudioCuesheetEditor
I get the following output, when trying to build the snap:
sven@sven-virtual-machine:~/Downloads$ snapcraft
Launching a VM.
mount failed: Error enabling mount support in 'snapcraft-audiocuesheeteditor'
An error occurred when trying to mount using 'multipass': returned exit code 2.
Does anybody have an idea, why this fails? I’m running a VM behind a proxy, which has cost me some time to configure (using PX to gateway the proxy from host to the VM).