mirror of
https://github.com/ivabus/pantry
synced 2024-11-10 18:45:19 +03:00
e097178cdf
* display-names * wip
35 lines
700 B
YAML
35 lines
700 B
YAML
distributable:
|
||
url: https://github.com/teaxyz/brewkit/archive/refs/tags/v{{ version }}.tar.gz
|
||
strip-components: 1
|
||
|
||
display-name: tea/brewkit
|
||
|
||
versions:
|
||
github: teaxyz/brewkit
|
||
|
||
dependencies:
|
||
deno.land: ^1.30
|
||
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
|
||
|
||
provides:
|
||
- bin/tea-pkg
|
||
|
||
test:
|
||
dependencies:
|
||
zlib.net: '*'
|
||
script:
|
||
pkg test zlib.net
|
||
# we would like to test builds but we need a `GITHUB_TOKEN` and
|
||
# (currently) we can’t figure out how to set that up in CI/CD
|