pantry/projects/pkgx.sh/brewkit/package.yml
Max Howell 81e7a5e16f
pkgx
2023-10-01 14:44:42 -04:00

32 lines
681 B
YAML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

distributable:
url: https://github.com/pkgxdev/brewkit/archive/refs/tags/v{{ version }}.tar.gz
strip-components: 1
display-name: brewkit
versions:
github: pkgxdev/brewkit
dependencies:
deno.land: '>=1.30<1.36.1'
gnu.org/bash: '*'
tea.xyz: '>=0.24.10'
build: |
mkdir -p {{prefix}}
rm -rf {{prefix}}/*
# ^^ because our build infra uses this pkg to build itself
for x in bin libexec lib share deno.*; do
test -e $x && mv $x "{{prefix}}"
done
test:
dependencies:
zlib.net: '*'
script:
pkg test zlib.net
# we would like to test builds but we need a `GITHUB_TOKEN` and
# (currently) we cant figure out how to set that up in CI/CD