mirror of
https://github.com/ivabus/pantry
synced 2024-11-30 04:05:06 +03:00
+github.com/cli/cli
This commit is contained in:
parent
7670731751
commit
870c381c26
1 changed files with 35 additions and 0 deletions
35
projects/github.com/cli/cli/package.yml
Normal file
35
projects/github.com/cli/cli/package.yml
Normal file
|
@ -0,0 +1,35 @@
|
||||||
|
distributable:
|
||||||
|
url: https://github.com/cli/cli/archive/refs/tags/v{{version}}.tar.gz
|
||||||
|
strip-components: 1
|
||||||
|
|
||||||
|
versions:
|
||||||
|
github: cli/cli/tags
|
||||||
|
|
||||||
|
provides:
|
||||||
|
- bin/gh
|
||||||
|
|
||||||
|
build:
|
||||||
|
script: |
|
||||||
|
make bin/gh
|
||||||
|
mkdir -p "{{prefix}}"/bin
|
||||||
|
mv bin/gh "{{prefix}}"/bin
|
||||||
|
|
||||||
|
# cleanup - gocache for some reason is not writeable
|
||||||
|
chmod -R u+w "$GOPATH" "$GOCACHE"
|
||||||
|
rm -rf "$GOPATH" "$GOCACHE"
|
||||||
|
dependencies:
|
||||||
|
go.dev: ^1.18
|
||||||
|
tea.xyz/gx/make: '*'
|
||||||
|
env:
|
||||||
|
GOPATH: ${{prefix}}/gopath
|
||||||
|
GOCACHE: ${{prefix}}/gocache
|
||||||
|
GH_VERSION: ${{version}}
|
||||||
|
GO_LDFLAGS:
|
||||||
|
- -s -w
|
||||||
|
linux:
|
||||||
|
# or segmentation fault
|
||||||
|
# fix found here https://github.com/docker-library/golang/issues/402#issuecomment-982204575
|
||||||
|
GO_LDFLAGS:
|
||||||
|
- -buildmode=pie
|
||||||
|
test:
|
||||||
|
gh --version
|
Loading…
Reference in a new issue