mirror of
https://github.com/ivabus/pantry
synced 2024-11-10 02:25:18 +03:00
050ba9bf25
closes #4570
32 lines
656 B
YAML
32 lines
656 B
YAML
distributable:
|
|
url: https://github.com/a-h/templ/archive/refs/tags/v{{version}}.tar.gz
|
|
strip-components: 1
|
|
|
|
versions:
|
|
github: a-h/templ
|
|
strip: /^v/
|
|
|
|
build:
|
|
dependencies:
|
|
go.dev: ^1.20
|
|
env:
|
|
CGO_ENABLED: 0
|
|
LDFLAGS:
|
|
- -extldflags=-static
|
|
- -w
|
|
- -s
|
|
script:
|
|
- go build -v -ldflags="$LDFLAGS" -o templ ./cmd/templ
|
|
- mkdir -p "{{ prefix }}"/bin
|
|
- mv templ "{{ prefix }}"/bin
|
|
|
|
provides:
|
|
- bin/templ
|
|
|
|
test:
|
|
script:
|
|
# some versions have a v prefix, some don't
|
|
- test "$(templ --version)" = {{version}} || test "$(templ --version)" = "v{{version}}"
|
|
- templ generate
|
|
- test -f hello_templ.go
|