mirror of
https://github.com/ivabus/pantry
synced 2024-11-22 16:35:07 +03:00
parent
3223503d3e
commit
b408ec5cdc
1 changed files with 17 additions and 5 deletions
|
@ -15,12 +15,24 @@ dependencies:
|
||||||
provides:
|
provides:
|
||||||
- bin/bk
|
- bin/bk
|
||||||
|
|
||||||
build: |
|
build:
|
||||||
mkdir -p {{prefix}}
|
script:
|
||||||
|
- mkdir -p {{prefix}}
|
||||||
|
|
||||||
for x in bin libexec lib share deno.*; do
|
- |
|
||||||
test -e $x && mv $x "{{prefix}}"
|
for x in $PARTS; do
|
||||||
|
test -e $x && cp -a $x "{{prefix}}"
|
||||||
done
|
done
|
||||||
|
env:
|
||||||
|
PARTS:
|
||||||
|
- bin
|
||||||
|
- libexec
|
||||||
|
- lib
|
||||||
|
- share
|
||||||
|
- deno.*
|
||||||
|
- audit
|
||||||
|
- build
|
||||||
|
- test
|
||||||
|
|
||||||
test:
|
test:
|
||||||
# we can’t test builds since brewkit is not designed to be invoked
|
# we can’t test builds since brewkit is not designed to be invoked
|
||||||
|
|
Loading…
Reference in a new issue