gobot.io/x/gobot@v1.16.0/snapcraft.yaml (about)

     1  name: gobot
     2  version: dev
     3  summary: Gobot is a framework for robotics, physical computing, and IoT.
     4  description: |
     5    Gobot is a framework using the Go programming language for robotics, physical
     6    computing, and the Internet of Things.
     7    It provides a simple, yet powerful way to create solutions that incorporate
     8    multiple, different hardware devices at the same time.
     9  
    10  grade: devel
    11  confinement: strict
    12  
    13  apps:
    14    gobot:
    15      command: gobot
    16      plugs: [home]
    17  
    18  parts:
    19    gobot:
    20      source: .
    21      plugin: go
    22      go-packages: [gobot.io/x/gobot/cli]
    23      go-importpath: gobot.io/x/gobot
    24      organize:
    25        bin/cli: bin/gobot
    26      after: [go]
    27    go:
    28      source-tag: go1.7.5