mirror of
https://github.com/darkrenaissance/darkfi.git
synced 2026-04-28 03:00:18 -04:00
16 lines
368 B
Bash
Executable File
16 lines
368 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Download and install appimagetool into your PATH
|
|
# https://github.com/AppImage/appimagetool/releases/tag/continuous
|
|
|
|
APPDIR=DarkFi.AppDir/
|
|
rm -fr $APPDIR
|
|
mkdir $APPDIR
|
|
cp darkfi.desktop $APPDIR
|
|
|
|
cp ../../data/res/mipmap-xxxhdpi/ic_launcher.png $APPDIR/darkfi.png
|
|
cp ../../darkfi-app.linux $APPDIR/AppRun
|
|
cp -r ../../assets $APPDIR
|
|
appimagetool $APPDIR
|
|
|