mirror of
https://github.com/ivabus/pantry
synced 2024-11-22 08:25:07 +03:00
parent
6d56d8a239
commit
94007337e1
1 changed files with 56 additions and 0 deletions
56
projects/github.com/mrtazz/checkmake/package.yml
Normal file
56
projects/github.com/mrtazz/checkmake/package.yml
Normal file
|
@ -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
|
Loading…
Reference in a new issue