mirror of
https://github.com/ivabus/pantry
synced 2024-11-10 10:35:17 +03:00
+github.com/mikefarah/yq (#61)
* +github.com/mikefarah/yq * Add pandoc dependency and man page Co-authored-by: James Reynolds <magnsuviri@me.com>
This commit is contained in:
parent
3a4d686d42
commit
958f1b83f1
28
projects/github.com/mikefarah/yq/package.yml
Normal file
28
projects/github.com/mikefarah/yq/package.yml
Normal file
|
@ -0,0 +1,28 @@
|
|||
distributable:
|
||||
url: https://github.com/mikefarah/yq/archive/refs/tags/v{{ version }}.tar.gz
|
||||
strip-components: 1
|
||||
|
||||
versions:
|
||||
github: mikefarah/yq/releases/tags
|
||||
|
||||
build:
|
||||
script: |
|
||||
go build -v -ldflags="$LDFLAGS"
|
||||
./scripts/generate-man-page-md.sh
|
||||
./scripts/generate-man-page.sh
|
||||
mkdir -p "{{ prefix }}"/bin
|
||||
mv yq "{{ prefix }}"/bin
|
||||
mkdir -p "{{ prefix }}"/share/man/man1
|
||||
mv yq.1 "{{ prefix }}"/share/man/man1
|
||||
dependencies:
|
||||
go.dev: ^1.18
|
||||
pandoc.org: '*'
|
||||
env:
|
||||
LDFLAGS:
|
||||
- -s -w
|
||||
linux:
|
||||
LDFLAGS:
|
||||
- -buildmode=pie
|
||||
|
||||
test:
|
||||
yq --version
|
Loading…
Reference in a new issue