pantry/projects/prql-lang.org/package.yml

40 lines
1 KiB
YAML
Raw Normal View History

2023-01-13 14:20:20 +03:00
distributable:
url: https://github.com/PRQL/prql/archive/refs/tags/{{ version }}.tar.gz
strip-components: 1
versions:
github: PRQL/prql/tags
build:
dependencies:
rust-lang.org/cargo: '*'
2023-01-19 09:24:43 +03:00
working-directory: prql-compiler
2023-01-13 14:20:20 +03:00
script: |
2023-01-19 09:24:43 +03:00
if test {{version.major}} -eq 0 -a {{version.minor}} -lt 4; then
cargo install --path . --root {{prefix}}
elif test "{{version}}" = "0.4.0"; then
cargo install --path . --root {{prefix}} --all-features
else
cargo install --path prqlc --root {{prefix}}
fi
2023-01-13 14:20:20 +03:00
cd {{prefix}}/bin
# Bin got renamed; this is one way to keep ourselves working
if test {{version.major}} -eq 0 -a {{version.minor}} -lt 4; then
ln -s prql-compiler prqlc
else
ln -s prqlc prql-compiler
fi
test: |
if test {{version.major}} -eq 0 -a {{version.minor}} -lt 4; then
COMPILER=prql-compiler
else
COMPILER=prqlc
fi
echo "from employees | filter has_dog | select salary" | $COMPILER compile
2023-01-13 14:20:20 +03:00
provides:
- bin/prql-compiler
- bin/prqlc