mirror of
https://github.com/ivabus/pantry
synced 2024-11-10 10:35:17 +03:00
af1398f73c
* feat: add stripe * fix: correct stripe cli version
32 lines
793 B
YAML
32 lines
793 B
YAML
distributable:
|
|
url: https://github.com/stripe/stripe-cli/archive/refs/tags/v{{version}}.tar.gz
|
|
strip-components: 1
|
|
|
|
versions:
|
|
github: stripe/stripe-cli
|
|
|
|
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}}"
|