-
Notifications
You must be signed in to change notification settings - Fork 478
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
#443: Add initial snapcraft configuration
The resulting snap requires to connect USB manually with: ``` sudo snap connect cfclient:raw-usb ```
- Loading branch information
Showing
4 changed files
with
35 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
[Desktop Entry] | ||
Name=Crazyflie client | ||
Exec=cfclient | ||
Icon=${SNAP}/meta/gui/cfclient.png | ||
Type=Application |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
name: cfclient | ||
version: git | ||
summary: Crazyflie client | ||
description: | | ||
Crazyflie client | ||
base: core18 | ||
confinement: strict | ||
icon: snap/gui/cfclient.png | ||
|
||
|
||
parts: | ||
cfclient: | ||
plugin: python | ||
python-version: python3 | ||
source: . | ||
stage-packages: | ||
- python3-pyqt5 | ||
|
||
apps: | ||
cfclient: | ||
command: python3 -m cfclient.gui | ||
extensions: | ||
- kde-neon | ||
plugs: | ||
- home | ||
- opengl | ||
- network | ||
- network-bind | ||
- raw-usb |