mirror of
https://github.com/ivabus/pantry
synced 2024-11-26 18:25:08 +03:00
parent
157c0103ab
commit
01bbd429e5
6 changed files with 24 additions and 3 deletions
|
@ -9,8 +9,9 @@ provides:
|
||||||
- bin/deno
|
- bin/deno
|
||||||
|
|
||||||
interprets:
|
interprets:
|
||||||
- .ts
|
# extensions: [ts, js] # nodejs.org for now
|
||||||
- .js
|
extensions: ts
|
||||||
|
args: [deno, run]
|
||||||
|
|
||||||
build:
|
build:
|
||||||
script: |
|
script: |
|
||||||
|
|
|
@ -10,7 +10,8 @@ provides:
|
||||||
- bin/go
|
- bin/go
|
||||||
|
|
||||||
interprets:
|
interprets:
|
||||||
- .go
|
extensions: go
|
||||||
|
args: [go, run]
|
||||||
|
|
||||||
dependencies:
|
dependencies:
|
||||||
# `cgo` requires a C compiler
|
# `cgo` requires a C compiler
|
||||||
|
@ -25,6 +26,9 @@ build:
|
||||||
go.dev: '*'
|
go.dev: '*'
|
||||||
working-directory: src
|
working-directory: src
|
||||||
script: |-
|
script: |-
|
||||||
|
# `make.bash` complains about unset GOCACHE and HOME otherwise
|
||||||
|
export GOCACHE="$(pwd)/.gocache"
|
||||||
|
|
||||||
./make.bash
|
./make.bash
|
||||||
|
|
||||||
# cleanup
|
# cleanup
|
||||||
|
|
|
@ -16,6 +16,10 @@ dependencies:
|
||||||
provides:
|
provides:
|
||||||
- bin/node
|
- bin/node
|
||||||
|
|
||||||
|
interprets:
|
||||||
|
extensions: js
|
||||||
|
args: node
|
||||||
|
|
||||||
build:
|
build:
|
||||||
dependencies:
|
dependencies:
|
||||||
tea.xyz/gx/cc: c99
|
tea.xyz/gx/cc: c99
|
||||||
|
|
|
@ -79,3 +79,7 @@ provides:
|
||||||
- bin/streamzip
|
- bin/streamzip
|
||||||
- bin/xsubpp
|
- bin/xsubpp
|
||||||
- bin/zipdetails
|
- bin/zipdetails
|
||||||
|
|
||||||
|
interprets:
|
||||||
|
extensions: pl
|
||||||
|
args: perl
|
||||||
|
|
|
@ -12,6 +12,10 @@ provides:
|
||||||
- bin/python
|
- bin/python
|
||||||
- bin/python3 #FIXME this is only true of python 3
|
- bin/python3 #FIXME this is only true of python 3
|
||||||
|
|
||||||
|
interprets:
|
||||||
|
extensions: py
|
||||||
|
args: python
|
||||||
|
|
||||||
dependencies:
|
dependencies:
|
||||||
# recommended (but none are actually required)
|
# recommended (but none are actually required)
|
||||||
zlib.net: 1
|
zlib.net: 1
|
||||||
|
|
|
@ -52,5 +52,9 @@ provides:
|
||||||
- bin/ri
|
- bin/ri
|
||||||
- bin/ruby
|
- bin/ruby
|
||||||
|
|
||||||
|
interprets:
|
||||||
|
extensions: rb
|
||||||
|
args: ruby
|
||||||
|
|
||||||
companions:
|
companions:
|
||||||
rubygems.org: '*'
|
rubygems.org: '*'
|
||||||
|
|
Loading…
Reference in a new issue