mirror of
https://github.com/ivabus/pantry
synced 2024-11-29 19:55:06 +03:00
601fcfe3ac
closes #6474 closes #6475
31 lines
661 B
YAML
31 lines
661 B
YAML
distributable:
|
|
url: https://github.com/SUPERCILEX/fuc/archive/refs/tags/{{ version.tag }}.tar.gz
|
|
strip-components: 1
|
|
|
|
provides:
|
|
- bin/rmz
|
|
|
|
versions:
|
|
github: SUPERCILEX/fuc
|
|
|
|
build:
|
|
dependencies:
|
|
rust-lang.org: '>=1.60'
|
|
rust-lang.org/cargo: '*'
|
|
script: cargo install --locked --path rmz --root {{prefix}}
|
|
|
|
test:
|
|
# there is some odd bug that seems to prevent the full test from running
|
|
# on linux/x86-64 runners, so we'll do a short one
|
|
# https://github.com/SUPERCILEX/fuc/issues/34
|
|
- run: |
|
|
touch a
|
|
rmz a
|
|
test ! -f a
|
|
exit
|
|
if: linux/x86-64
|
|
- mkdir a
|
|
- touch a/b
|
|
- test -f a/b
|
|
- rmz a
|
|
- test ! -d a
|