pantry/projects/trufflesecurity.com/trufflehog/package.yml
Kishan B 1308e6ce78
Add trufflehog command (#3902)
* Add trufflehog command to pantry

* Search for an exact string instead of a regex pattern

* Fix the test by piping stderr into stdout

* Fix audit: Move trufflehog cli to trufflehog directory

* Fix audit: Rename to use the domain of trufflehog
2023-10-31 14:36:53 -04:00

27 lines
538 B
YAML

distributable:
url: https://github.com/trufflesecurity/trufflehog/archive/refs/tags/v{{version}}.tar.gz
strip-components: 1
versions:
github: trufflesecurity/trufflehog
provides:
- bin/trufflehog
build:
dependencies:
go.dev: ^1.21
script:
- go build -v -ldflags="$LDFLAGS" -o "{{prefix}}"/bin/trufflehog
env:
CGO_ENABLED: 0
LDFLAGS:
- -s
- -w
- -X=github.com/trufflesecurity/trufflehog/v3/pkg/version.BuildVersion={{version}}
test:
trufflehog --version 2>&1 | grep -F "{{version}}"