-
-
Notifications
You must be signed in to change notification settings - Fork 79
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Feat] support
snapcraft
build package to releases (#697)
* build(snap): support snapcraft package - add `snap/snapcraft.yaml` file NOTE: under `devmode` until fit to release * ci(gh-action): support `snapcraft` build and publish to `gh-release` page
- Loading branch information
Showing
2 changed files
with
41 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,26 @@ | ||
name: xplr | ||
version: git | ||
summary: A hackable, minimal, fast TUI file explorer | ||
description: | | ||
xplr is a terminal UI based file explorer | ||
that aims to increase our terminal productivity by being a flexible, | ||
interactive orchestrator for the ever growing awesome command-line | ||
utilities that work with the file-system. | ||
source-code: https://github.com/sayanarijit/xplr | ||
issues: https://github.com/sayanarijit/xplr/issues | ||
website: https://xplr.dev/ | ||
|
||
base: core20 | ||
grade: devel # must be 'stable' to release into candidate/stable channels | ||
confinement: devmode # use 'strict' once you have the right plugs and slots | ||
|
||
|
||
parts: | ||
xplr: | ||
plugin: rust | ||
source: . | ||
|
||
apps: | ||
xplr: | ||
command: bin/xplr | ||
|