mirror of
https://github.com/ivabus/pantry
synced 2024-11-10 10:35:17 +03:00
34 lines
621 B
YAML
34 lines
621 B
YAML
distributable:
|
|
url: https://github.com/jhheider/sanitize/archive/refs/tags/v{{ version }}.tar.gz
|
|
strip-components: 1
|
|
|
|
provides:
|
|
- bin/sanitize
|
|
|
|
versions:
|
|
github: jhheider/sanitize/tags
|
|
strip: /v/
|
|
|
|
build:
|
|
dependencies:
|
|
rust-lang.org: '>=1.56'
|
|
rust-lang.org/cargo: '*'
|
|
script:
|
|
cargo install --locked --path . --root {{prefix}}
|
|
|
|
test:
|
|
script: |
|
|
mkdir -p foo/foo
|
|
touch foo/bar foo/bat foo/foo/bat foo/foo/bar
|
|
sanitize foo -f $FIXTURE -y
|
|
test "$(find foo | sort)" = "$OUT"
|
|
env:
|
|
OUT: |
|
|
foo
|
|
foo/bar
|
|
foo/foo
|
|
foo/foo/bat
|
|
fixture: |
|
|
/bar
|
|
/foo/bat
|