+github.com/go-acme/lego (#3671)

* +github/jetporch/jetporch

* try fixing pkg-config dependency of openssl

* fixing libz dependency

* fixing libz dependency

* fixing zlib dependency (typo in previous commit)

* fixing dependencies versions

* fixing dependencies versions

* try with static linking of openssl and zlib

* wip

* wip

* github/jetporch/jetporch -> jetporch.com

* use ^major

* reuse static linking

* clean old stuff

* add package file
This commit is contained in:
tannevaled 2023-10-16 16:03:42 +02:00 committed by GitHub
parent c026643c04
commit 09b5ac3524
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -0,0 +1,30 @@
distributable:
url: https://github.com/go-acme/lego/archive/refs/tags/v{{version}}.tar.gz
strip-components: 1
versions:
github: go-acme/lego # reads github tags but only tags of releases (this is usually what you want)
strip: /^v/
build:
dependencies:
go.dev: ^1.20
env:
CGO_ENABLED: 0
GO11MODULE: on
MAIN_DIRECTORY: ./cmd/lego
LDFLAGS:
- -s
- -w
- -X main.version={{ version }}
linux:
LDFLAGS:
- -buildmode=pie
script: go build -v -ldflags="${LDFLAGS}" -o "{{ prefix }}"/bin/lego "${MAIN_DIRECTORY}"
provides:
- bin/lego
test:
script: test "$(lego --version|cut -d ' ' -f 3)" = {{version}}