Last active
May 17, 2018 15:35
-
-
Save brunob/1155589f66171992c8661dd8a51d8555 to your computer and use it in GitHub Desktop.
Timeline snap
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
name: timeline # you probably want to 'snapcraft register <name>' | |
version: '1.17.0' | |
summary: Timeline | |
description: | | |
Timeline is a cross-platform application for displaying and navigating events on a timeline | |
grade: devel # must be 'stable' to release into candidate/stable channels | |
confinement: devmode # use 'strict' once you have the right plugs and slots | |
apps: | |
timeline: | |
plugs: [x11,desktop,unity7] | |
command: desktop-launch $SNAP/var/opt/timeline/source/timeline.py | |
parts: | |
timeline: | |
source: https://downloads.sourceforge.net/project/thetimelineproj/thetimelineproj/$SNAPCRAFT_PROJECT_VERSION/timeline-$SNAPCRAFT_PROJECT_VERSION.zip | |
plugin: python | |
python-version: python2 | |
python-packages: | |
- humblewx | |
stage-packages: [python-wxgtk3.0] | |
override-build: | | |
snapcraftctl build | |
mkdir -p $SNAPCRAFT_PART_INSTALL/var/opt/timeline | |
cp -R timeline-$SNAPCRAFT_PROJECT_VERSION/* $SNAPCRAFT_PART_INSTALL/var/opt/timeline | |
after: [desktop-gtk2] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment