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 #1074 from melachosangfleg/patch-1
Browse files Browse the repository at this point in the history
Add food: add arkade
  • Loading branch information
Matthew Fisher authored Nov 22, 2020
2 parents 11e6a84 + 9d4c5d0 commit 76a2577
Showing 1 changed file with 50 additions and 0 deletions.
50 changes: 50 additions & 0 deletions Food/arkade.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
local name = "arkade"
local version = "0.6.22"

food = {
name = name,
description = "Your one-stop CLI for Kubernetes",
license = "MIT",
homepage = "https://github.com/alexellis/arkade",
version = version,
packages = {
{
os = "darwin",
arch = "amd64",
url = "https://github.com/alexellis/" .. name .. "/releases/download/" .. version .. "/" .. name .. "-darwin",
sha256 = "7cf8d23fa39906d06d55b359b98b25ae5eb10d223c8bf3adf6ea8886007f11bd",
resources = {
{
path = name,
installpath = "bin/" .. name,
executable = true
}
}
},
{
os = "linux",
arch = "amd64",
url = "https://github.com/alexellis/" .. name .. "/releases/download/" .. version .. "/" .. name,
sha256 = "34c107073536fd67e4444fcc23609d344999cb55743130a21725ecf96beb8343",
resources = {
{
path = name,
installpath = "bin/" .. name,
executable = true
}
}
},
{
os = "windows",
arch = "amd64",
url = "https://github.com/alexellis/" .. name .. "/releases/download/" .. version .. "/" .. name .. ".exe",
sha256 = "493722b58c1e09ffb8f56c37dd9cad4b5edfb158ef63956d046caa30656b444f",
resources = {
{
path = name .. ".exe",
installpath = "bin\\" .. name .. ".exe"
}
}
}
}
}

0 comments on commit 76a2577

Please sign in to comment.