pantry/projects/github.com/burntsushi/xsv/package.yml
John Allen 6b134202fe +xsv
2023-01-18 09:47:14 -05:00

26 lines
436 B
YAML

distributable:
url: https://github.com/BurntSushi/xsv/archive/refs/tags/{{ version }}.tar.gz
strip-components: 1
versions:
github: BurntSushi/xsv/tags
provides:
- bin/xsv
build:
dependencies:
rust-lang.org: ">=1.60"
rust-lang.org/cargo: "*"
script: cargo install --locked --path . --root {{prefix}}
test:
script: |
out=$(xsv count $FIXTURE)
test "$out" = "2"
fixture: |
foo,bar
1,2
3,42