mirror of
https://github.com/ivabus/pantry
synced 2024-11-10 10:35:17 +03:00
a626b479fc
* +github.com/canonical/pebble * does not compile on darwin presently * Update package.yml --------- Co-authored-by: Jacob Heider <jacob@pkgx.dev>
40 lines
753 B
YAML
40 lines
753 B
YAML
distributable:
|
|
url: git+https://github.com/canonical/pebble
|
|
ref: v{{version.raw}}
|
|
|
|
display-name: canonical/pebble
|
|
|
|
versions:
|
|
github: canonical/pebble
|
|
strip:
|
|
- /^v/
|
|
|
|
platforms:
|
|
# not compiling presently
|
|
# looks like canonical's fork of go-flags (several years old) doesn't support unix.Prctl properly on darwin
|
|
# - darwin
|
|
- linux
|
|
|
|
build:
|
|
dependencies:
|
|
go.dev: '*'
|
|
git-scm.org: '*'
|
|
gnu.org/sed: '*'
|
|
cmake.org: ^3
|
|
env:
|
|
CGO_ENABLED: 0
|
|
LDFLAGS:
|
|
- -w
|
|
- -s
|
|
linux:
|
|
LDFLAGS:
|
|
- -buildmode=pie
|
|
script:
|
|
- go generate ./cmd
|
|
- go build -v -ldflags="${LDFLAGS}" -o "{{ prefix }}/bin/pebble" --trimpath ./cmd/pebble
|
|
|
|
provides:
|
|
- bin/pebble
|
|
|
|
test: test "$(pebble version --client)" = v{{version}}
|