FurryChat/snap/snapcraft.yaml

38 lines
733 B
YAML
Raw Normal View History

2020-10-04 16:39:07 +00:00
name: fluffychat
version: 0.1.0
summary: Chat with your friends.
description: Chat with your friends.
icon: assets/logo.png
confinement: strict
base: core18
grade: stable
apps:
fluffychat:
command: fluffychat
extensions: [flutter-dev]
plugs:
- network
- home
parts:
2020-10-04 17:06:41 +00:00
olm:
source: .
source-type: git
plugin: cmake
build-packages:
- build-essential
2020-10-04 17:55:36 +00:00
stage-packages:
- libsqlite3-0
2020-10-04 17:06:41 +00:00
override-build: |
2020-10-04 17:55:36 +00:00
if cd olm; then git pull; else git clone https://gitlab.matrix.org/matrix-org/olm.git; fi
2020-10-04 17:06:41 +00:00
cd olm
cmake . -Bbuild
cmake --build build
sudo make install
2020-10-04 16:39:07 +00:00
fluffychat:
source: .
plugin: flutter
flutter-target: lib/main.dart
2020-10-04 17:06:41 +00:00
after: [olm]