+triangle -- Convert images to computer generated art using delaunay triangulation.

This commit is contained in:
Kevin Chen 2023-09-16 18:45:26 -04:00 committed by Jacob Heider
parent 39cf18b517
commit 2c13faa877

View file

@ -0,0 +1,35 @@
distributable:
url: https://github.com/esimov/triangle/archive/refs/tags/v{{version}}.tar.gz
strip-components: 1
versions:
github: esimov/triangle
provides:
- bin/triangle
build:
dependencies:
go.dev: ^1.18
script: |
go mod download
mkdir -p "{{ prefix }}"/bin
go build -v -trimpath -ldflags="$LDFLAGS" -o $BUILDLOC ./cmd/triangle
env:
GOPROXY: https://proxy.golang.org,direct
GOSUMDB: sum.golang.org
GO111MODULE: on
CGO_ENABLED: 0
BUILDLOC: '{{prefix}}/bin/triangle'
LDFLAGS:
- -s
- -w
- -X main.version={{version}}
linux:
# or segmentation fault
# fix found here https://github.com/docker-library/golang/issues/402#issuecomment-982204575
LDFLAGS:
- -buildmode=pie
test:
triangle --help 2>&1 >/dev/null | grep {{version}}