Skip to content
This repository has been archived by the owner on Mar 8, 2022. It is now read-only.

Commit

Permalink
Merge pull request #1126 from arbourd/yq-4.1.0
Browse files Browse the repository at this point in the history
yq 4.1.0
  • Loading branch information
Matthew Fisher authored Dec 24, 2020
2 parents e082a37 + a8420c3 commit 453cd47
Showing 1 changed file with 50 additions and 0 deletions.
50 changes: 50 additions & 0 deletions Food/yq.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
local name = "yq"
local version = "4.1.0"

food = {
name = name,
description = "A portable command-line YAML processor",
license = "MIT",
homepage = "https://mikefarah.gitbook.io/yq/",
version = version,
packages = {
{
os = "darwin",
arch = "amd64",
url = "https://github.com/mikefarah/yq/releases/download/v" .. version .. "/" .. name .. "_darwin_amd64.tar.gz",
sha256 = "00e5745c35a760c08947ec10e7ef33bd73983c4f9c4a565fcb7587922337651b",
resources = {
{
path = name .. "_darwin_amd64",
installpath = "bin/" .. name,
executable = true
}
}
},
{
os = "linux",
arch = "amd64",
url = "https://github.com/mikefarah/yq/releases/download/v" .. version .. "/" .. name .. "_linux_amd64.tar.gz",
sha256 = "62be8d165b422d34782fc931dc7dd9d07069d888d7e513fcc4575745f3bbfd61",
resources = {
{
path = name .. "_linux_amd64",
installpath = "bin/" .. name,
executable = true
}
}
},
{
os = "windows",
arch = "amd64",
url = "https://github.com/mikefarah/yq/releases/download/v" .. version .. "/" .. name .. "_windows_amd64.zip",
sha256 = "84843a0b165965fb4c6438107817b7563808968e6491bc9a5ed1808e31ec5943",
resources = {
{
path = name .. "_windows_amd64.exe",
installpath = "bin\\" .. name .. ".exe"
}
}
}
}
}

0 comments on commit 453cd47

Please sign in to comment.