Skip to content

Add vexctl #29674

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 5 commits into from
Apr 15, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
45 changes: 45 additions & 0 deletions recipes/vexctl/recipe.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
context:
name: vexctl
version: "0.3.0"

package:
name: ${{ name|lower }}
version: ${{ version }}

source:
- url: https://github.com/openvex/${{ name }}/archive/refs/tags/v${{ version }}.tar.gz
sha256: 5a5904448ef1bf11bd8a165d737acc88afd9799618f6583c15cee5d99dd58e17
target_directory: src

build:
number: 0
script:
- cd src
# alibabacloud-go/cr-20160607/ has no LICENSE as of version 1.0.1, but is Apache-2.0 licensed.
- go-licenses save ./ --save_path ../library_licenses --ignore github.com/openvex/vexctl --ignore github.com/alibabacloud-go/cr-20160607/client
- if: win
then: go install -v .
else: go build -v -trimpath -o $PREFIX/bin/vexctl ./main.go

requirements:
build:
- ${{ compiler('go-nocgo') }}
- ${{ stdlib('c') }}
- go-licenses

tests:
- script:
- vexctl --help

about:
homepage: https://github.com/openvex/vexctl
summary: A tool to create, transform and attest VEX metadata
license: Apache-2.0
license_file:
- src/LICENSE
- library_licenses/
repository: https://github.com/openvex/vexctl

extra:
recipe-maintainers:
- delsner