summaryrefslogtreecommitdiffstats
path: root/snapcraft.yaml
blob: 2d63a050b52d529b9d789eeb5bf5666367b7e782 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
name: ripgrep # you probably want to 'snapcraft register <name>'
version: '0.5.1' # just for humans, typically '1.2+git' or '1.3.2'
summary: Fast file searcher # 79 char long summary
description: |
  ripgrep combines the usability of The Silver Searcher with the raw speed of grep.
grade: stable # must be 'stable' to release into candidate/stable channels
confinement: classic # use 'strict' once you have the right plugs and slots
parts:
  ripgrep:
    plugin: rust
    source: .
apps:
  rg:
    command: env PATH=$SNAP/bin:$PATH rg
    aliases: [rg]