-
Notifications
You must be signed in to change notification settings - Fork 632
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1941 from bboymimi/snap_support
[snap] Add 'snap/snapcraft.yaml'
- Loading branch information
Showing
1 changed file
with
22 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
name: universal-ctags # you probably want to 'snapcraft register <name>' | ||
version: '0.1.1' # just for humans, typically '1.2+git' or '1.3.2' | ||
summary: Symbol tags for tracing code # 79 char long summary | ||
description: | | ||
The goal of the project is preparing and maintaining common/unified working | ||
space where people interested in making ctags better can work together. | ||
grade: stable # must be 'stable' to release into candidate/stable channels | ||
confinement: strict # use 'strict' once you have the right plugs and slots | ||
|
||
apps: | ||
ctags: | ||
command: ctags | ||
plugs: | ||
- home | ||
|
||
parts: | ||
universal-ctags: | ||
source-type: git | ||
source: https://github.com/universal-ctags/ctags.git | ||
# See 'snapcraft plugins' | ||
plugin: autotools |