mirror of
https://github.com/ivabus/pantry
synced 2024-11-10 18:45:19 +03:00
33 lines
662 B
YAML
33 lines
662 B
YAML
distributable:
|
|
url: https://github.com/mitchellh/gox/archive/v{{version}}.tar.gz
|
|
strip-components: 1
|
|
|
|
versions:
|
|
github: mitchellh/gox/tags
|
|
|
|
dependencies:
|
|
go.dev: '*'
|
|
|
|
build:
|
|
script: go build $ARGS
|
|
env:
|
|
ARGS:
|
|
- -trimpath
|
|
- -o={{prefix}}/bin/gox
|
|
|
|
provides:
|
|
- bin/gox
|
|
|
|
test:
|
|
env:
|
|
GO111MODULE: 'auto'
|
|
dependencies:
|
|
gnu.org/wget: '*'
|
|
go.dev: '*'
|
|
script:
|
|
- wget https://github.com/allaboutapps/go-starter/archive/go-starter-2023-05-03.tar.gz
|
|
- tar -xz -fgo-starter-2023-05-03.tar.gz
|
|
- cd ./go-starter-go-starter-2023-05-03
|
|
- gox -arch amd64 -os darwin -os freebsd
|
|
- test -x ./go-starter_darwin_amd64
|