mirror of
https://github.com/ivabus/pantry
synced 2024-11-10 02:25:18 +03:00
45 lines
721 B
YAML
45 lines
721 B
YAML
distributable:
|
|
url: git+https://github.com/zyedidia/eget
|
|
ref: ${{version.tag}}
|
|
|
|
display-name: Eget
|
|
|
|
versions:
|
|
github: zyedidia/eget
|
|
|
|
dependencies:
|
|
curl.se/ca-certs: '*'
|
|
|
|
build:
|
|
dependencies:
|
|
go.dev: '*'
|
|
pandoc.org: '*'
|
|
script:
|
|
- go build -ldflags="$LDFLAGS" $ARGS
|
|
env:
|
|
ARGS:
|
|
- -v
|
|
- -trimpath
|
|
- -o
|
|
- ${{prefix}}/bin/eget
|
|
LDFLAGS:
|
|
- -s
|
|
- -w
|
|
- -X main.Version={{version}}
|
|
linux:
|
|
LDFLAGS:
|
|
- -buildmode=pie
|
|
|
|
provides:
|
|
- bin/eget
|
|
|
|
test:
|
|
script:
|
|
- eget --version | grep {{version}}
|
|
- eget zyedidia/eget $ARGS
|
|
- ./eget --version | grep 1.1.0
|
|
env:
|
|
ARGS:
|
|
- --tag=v1.1.0
|
|
- --to=$PWD
|
|
- --file=eget |