Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions snapcraft.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: drive
summary: Google Drive client for the commandline
version: current

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hi!
Great work!
Just a suggestion. The version field should be a string, so you should put it in quotes.
Also, if you're tracking the master branch in github, it might be better to set:
version: 'master'
What do you think?

description:
drive is a tiny program to pull or push Google Drive files.
confinement: strict
grade: stable

apps:
drive:
command: bin/drive
plugs: [home, network, network-bind]

parts:
drive:
plugin: go
source: https://github.com/odeke-em/drive
source-type: git
go-importpath: github.com/odeke-em/drive
build-packages: [gcc, libgudev-1.0-dev]