2022-04-29 10:11:39 +02:00
|
|
|
# FluffyChat AppImage
|
|
|
|
|
|
|
|
FluffyChat is provided as AppImage too. To Download, visit fluffychat.im.
|
|
|
|
|
|
|
|
## Building
|
|
|
|
|
|
|
|
- Ensure you install `appimagetool`
|
|
|
|
|
|
|
|
```shell
|
|
|
|
flutter build linux
|
|
|
|
|
|
|
|
# copy binaries to appimage dir
|
|
|
|
cp -r build/linux/{x64,arm64}/release/bundle appimage/FluffyChat.AppDir
|
|
|
|
cd appimage
|
|
|
|
|
|
|
|
# prepare AppImage files
|
|
|
|
cp FluffyChat.desktop FluffyChat.AppDir/
|
|
|
|
mkdir -p FluffyChat.AppDir/usr/share/icons
|
2022-06-08 09:05:56 +02:00
|
|
|
cp ../assets/logo.svg FluffyChat.AppDir/fluffychat.svg
|
|
|
|
cp AppRun FluffyChat.AppDir
|
2022-04-29 10:11:39 +02:00
|
|
|
|
|
|
|
# build the AppImage
|
|
|
|
appimagetool FluffyChat.AppDir
|
|
|
|
```
|