From 94007337e1077a93777d8c5c5ab799ea15c00b02 Mon Sep 17 00:00:00 2001 From: Jacob Heider Date: Fri, 12 Apr 2024 19:03:39 -0400 Subject: [PATCH] +checkmake closes #5775 --- .../github.com/mrtazz/checkmake/package.yml | 56 +++++++++++++++++++ 1 file changed, 56 insertions(+) create mode 100644 projects/github.com/mrtazz/checkmake/package.yml diff --git a/projects/github.com/mrtazz/checkmake/package.yml b/projects/github.com/mrtazz/checkmake/package.yml new file mode 100644 index 00000000..071644f4 --- /dev/null +++ b/projects/github.com/mrtazz/checkmake/package.yml @@ -0,0 +1,56 @@ +distributable: + url: https://github.com/mrtazz/checkmake/archive/refs/tags/{{version.tag}}.tar.gz + strip-components: 1 + +versions: + github: mrtazz/checkmake + +build: + dependencies: + go.dev: ^1.21 + script: go build $ARGS -ldflags="$GO_LDFLAGS -X 'main.buildTime=$(date)' -X 'main.builder=pkgx'" ./ + env: + ARGS: + - -trimpath + - -o={{prefix}}/bin/checkmake + GO_LDFLAGS: + - -s + - -w + - -X 'main.version={{version}}' + - -X 'main.goversion=go{{deps.go.dev.version}}' + linux: + GO_LDFLAGS: + - -buildmode=pie + +provides: + - bin/checkmake + +test: + - checkmake --version | grep {{version}} + - run: (checkmake $FIXTURE || true) | grep 'Missing required phony target' + fixture: + extname: make + content: | + # this is a comment + + expanded = "$(simple)" + simple := "foo" + + clean: + rm bar + rm foo + + foo: bar + touch foo + + bar: + touch bar + + all: foo + + test: + @echo lolnah + + .PHONY: clean + + .DEFAULT_GOAL: all