mirror of
https://github.com/ivabus/pantry
synced 2024-11-10 10:35:17 +03:00
33 lines
728 B
YAML
33 lines
728 B
YAML
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.39 # 1.40 shouts unskippable deprecation warnings
|
||
gnu.org/bash: ^5
|
||
pkgx.sh: ^1
|
||
|
||
provides:
|
||
- bin/bk
|
||
|
||
build: |
|
||
mkdir -p {{prefix}}
|
||
|
||
for x in bin libexec lib share deno.*; do
|
||
test -e $x && mv $x "{{prefix}}"
|
||
done
|
||
|
||
test:
|
||
# we can’t test builds since brewkit is not designed to be invoked
|
||
# recursively and fails in the toolchain setup on Linux and fails due to
|
||
# Ruby 2 not liking unicode paths on macOS
|
||
#- bk build pkgx.sh/brewkit
|
||
#- bk test pkgx.sh/brewkit
|
||
- bk --help
|
||
- bk build --help
|