I will pack an electronic application on ubuntu 14.04 LTS using snapcraft . I create it by referencing the link. The package was successfully created, but when I install the package using the following command
sudo snap install springbok_1.0.1_i386.snap
the following error message is displayed
ZOE ERROR (from /usr/lib/snap/snap): error opening parameter file
Here is my snapcraft.yaml
name: springbok version: 1.0.1 summary: The simplest way to keep notes. description: The simplest way to keep notes. Light, clean, and free. vendor: Ajatus software < pitabas.prathal@ajatus.co.in > icon: icon.png apps: springbok: command: wrapper plugs: [unity7, opengl, network] parts: springbok: plugin: copy stage-packages: - libnss3 - fontconfig-config - gnome-themes-standard files: springbok: springbok wrapper: usr/bin/wrapper icudtl.dat: icudtl.dat snapshot_blob.bin: snapshot_blob.bin natives_blob.bin: natives_blob.bin resources*: resources libnode.so: usr/lib/i386-linux-gnu/libnode.so libffmpeg.so: usr/lib/i386-linux-gnu/libffmpeg.so
here is my wrapper
export FONTCONFIG_PATH=$SNAP/etc/fonts export FONTCONFIG_FILE=$SNAP/etc/fonts/fonts.conf export XDG_DATA_HOME=$SNAP/usr/share export LD_LIBRARY_PATH=$SNAP_LIBRARY_PATH:$SNAP/springbok:$SNAP/usr/lib/i386-linux-gnu/ exec "$SNAP/springbok" " $@ "
source share