mirror of
https://gitlab.com/famedly/fluffychat.git
synced 2024-11-05 11:39:30 +01:00
e7d892169d
- fix missing files in AppImages Signed-off-by: TheOneWithTheBraid <the-one@with-the-braid.cf>
25 lines
544 B
Markdown
25 lines
544 B
Markdown
# 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
|
|
cp ../assets/logo.svg FluffyChat.AppDir/fluffychat.svg
|
|
cp AppRun FluffyChat.AppDir
|
|
|
|
# build the AppImage
|
|
appimagetool FluffyChat.AppDir
|
|
```
|