make-appimage.sh 368 B

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