pantry/projects/gomplate.ca/package.yml

34 lines
807 B
YAML
Raw Normal View History

distributable:
url: https://github.com/hairyhenderson/gomplate/archive/refs/tags/v{{version}}.tar.gz
strip-components: 1
versions:
github: hairyhenderson/gomplate
build:
dependencies:
2024-06-02 23:36:49 +03:00
go.dev: ~1.22.3
script:
- go mod download
- go build -v -ldflags="$LDFLAGS" -o "{{prefix}}"/bin/gomplate ./cmd/gomplate
env:
LDFLAGS:
- -s
- -w
- -X $(go list ./version).Version={{version}}
linux:
# or segmentation fault
# fix found here https://github.com/docker-library/golang/issues/402#issuecomment-982204575
LDFLAGS:
2024-06-02 23:36:49 +03:00
- -buildmode=pie
provides:
- bin/gomplate
test:
fixture: |
Hello, {{ .Env.USER }}
2024-06-02 23:36:49 +03:00
script:
- test "$(gomplate < $FIXTURE)" = "Hello, $USER"
- test "$(gomplate --version)" = "gomplate version {{version}}"