2023-04-03 00:27:46 +03:00
|
|
|
distributable:
|
|
|
|
url: https://github.com/stripe/stripe-cli/archive/refs/tags/v{{version}}.tar.gz
|
|
|
|
strip-components: 1
|
|
|
|
|
|
|
|
versions:
|
2023-04-27 00:08:17 +03:00
|
|
|
github: stripe/stripe-cli/releases/tags
|
|
|
|
strip: /^v/
|
2023-04-03 00:27:46 +03:00
|
|
|
|
|
|
|
provides:
|
|
|
|
- bin/stripe
|
|
|
|
|
|
|
|
build:
|
|
|
|
script: |
|
|
|
|
make setup
|
|
|
|
go build -v -ldflags="$LDFLAGS" -o stripe cmd/stripe/main.go
|
|
|
|
mkdir -p "{{ prefix }}"/bin
|
|
|
|
mv stripe "{{ prefix }}"/bin
|
|
|
|
dependencies:
|
|
|
|
go.dev: ^1.19
|
|
|
|
tea.xyz/gx/make: '*'
|
|
|
|
|
|
|
|
env:
|
|
|
|
LDFLAGS:
|
|
|
|
[-s, -w, "-X=main.Version={{ version }}", "-X=github.com/stripe/stripe-cli/pkg/version.Version={{ version }}"]
|
|
|
|
linux:
|
|
|
|
# or segmentation fault
|
|
|
|
# fix found here https://github.com/docker-library/golang/issues/402#issuecomment-982204575
|
|
|
|
LDFLAGS:
|
|
|
|
- -buildmode=pie
|
|
|
|
|
|
|
|
test: |
|
|
|
|
test "$(stripe --version)" == "stripe version {{version}}"
|