/ bin / app / release / linux / make-appimage.sh
make-appimage.sh
 1  #!/bin/bash
 2  
 3  # Download and install appimagetool into your PATH
 4  # https://github.com/AppImage/appimagetool/releases/tag/continuous
 5  
 6  APPDIR=DarkFi.AppDir/
 7  rm -fr $APPDIR
 8  mkdir $APPDIR
 9  cp darkfi.desktop $APPDIR
10  
11  cp ../../data/res/mipmap-xxxhdpi/ic_launcher.png $APPDIR/darkfi.png
12  cp ../../darkfi-app.linux $APPDIR/AppRun
13  cp -r ../../assets $APPDIR
14  appimagetool $APPDIR
15