mirror of
https://github.com/bartvdbraak/homebrew-keyweave.git
synced 2025-04-26 17:11:21 +00:00
feat: added formula for vv0.2.1
This commit is contained in:
parent
e8f7d18763
commit
622bacf3be
1 changed files with 15 additions and 15 deletions
|
@ -2,38 +2,38 @@ class Keyweave < Formula
|
|||
desc "Fetches secrets from Azure Key Vault and weaves them into a convenient .env file"
|
||||
homepage "https://github.com/bartvdbraak/keyweave"
|
||||
license "GPLv3"
|
||||
version "0.2.0"
|
||||
version "v0.2.1"
|
||||
|
||||
option "with-gnu-libc", "Install glibc binary"
|
||||
option "with-musl-libc", "Install musl binary (default)"
|
||||
|
||||
if OS.mac?
|
||||
if Hardware::CPU.arm?
|
||||
url "https://github.com/bartvdbraak/keyweave/releases/download/v0.2.0/keyweave-aarch64-apple-darwin.tar.xz"
|
||||
sha256 "5d486e110fed077ff9309814cc4bb205b50fa4263bad3d204e4d9f230002dd3c"
|
||||
url "https://github.com/bartvdbraak/keyweave/releases/download/vv0.2.1/keyweave-aarch64-apple-darwin.tar.xz"
|
||||
sha256 "2797f246f4551e825fa27c3d373a8462300bec6bc9c85db790150428c845f1c6"
|
||||
else
|
||||
url "https://github.com/bartvdbraak/keyweave/releases/download/v0.2.0/keyweave-x86_64-apple-darwin.tar.xz"
|
||||
sha256 "d88f646619d69f088fb2a1c223c7b1cf6199659fd593abc475851ddee866d4e9"
|
||||
url "https://github.com/bartvdbraak/keyweave/releases/download/vv0.2.1/keyweave-x86_64-apple-darwin.tar.xz"
|
||||
sha256 "3bee0c6ade49af5b86d1b7bdcdaa2d2c2388e8c3a58089bafb4fbda4efdb87b8"
|
||||
end
|
||||
elif OS.linux?
|
||||
if Hardware::CPU.arm?
|
||||
if Hardware::CPU.is_32_bit?
|
||||
url "https://github.com/bartvdbraak/keyweave/releases/download/v0.2.0/keyweave-armv7-unknown-linux-gnueabihf.tar.xz"
|
||||
sha256 "45863c6d3f34bb7727cd112a0adfc20b840f4f5c92def99b9e15bde20e2a32f8"
|
||||
url "https://github.com/bartvdbraak/keyweave/releases/download/vv0.2.1/keyweave-armv7-unknown-linux-gnueabihf.tar.xz"
|
||||
sha256 "e3fa0c462c89b5e34a01f3d9f2303913e25b1f9bd904c4cdddcd18a930942197"
|
||||
else
|
||||
url "https://github.com/bartvdbraak/keyweave/releases/download/v0.2.0/keyweave-aarch64-unknown-linux-gnu.tar.xz"
|
||||
sha256 ""
|
||||
url "https://github.com/bartvdbraak/keyweave/releases/download/vv0.2.1/keyweave-aarch64-unknown-linux-gnu.tar.xz"
|
||||
sha256 "708aa03fb55677f4c735a12db2e1d750fe2ba76452481a66fd91fbff19943313"
|
||||
end
|
||||
else
|
||||
if build.with?("with-gnu-libc")
|
||||
url "https://github.com/bartvdbraak/keyweave/releases/download/v0.2.0/keyweave-x86_64-unknown-linux-gnu.tar.xz"
|
||||
sha256 "79317c194bd41a2d9ec55e80353e3eb510a11e3c57708e65cc0a34966a86ae14"
|
||||
url "https://github.com/bartvdbraak/keyweave/releases/download/vv0.2.1/keyweave-x86_64-unknown-linux-gnu.tar.xz"
|
||||
sha256 "b25c017383f3118837d10d453565d0be1f61c5ca594bcff6d34edbd7c68ba61e"
|
||||
elsif build.with?("with-musl-libc")
|
||||
url "https://github.com/bartvdbraak/keyweave/releases/download/v0.2.0/keyweave-x86_64-unknown-linux-musl.tar.xz"
|
||||
sha256 "6f6ad0810a4bf75d914dd09c4c55efadc8b038d10811c4223b787ac5d1cf4186"
|
||||
url "https://github.com/bartvdbraak/keyweave/releases/download/vv0.2.1/keyweave-x86_64-unknown-linux-musl.tar.xz"
|
||||
sha256 "16480a4692618b8b272a50384331672015468b9e25103926d6cbc0a9b2d15e77"
|
||||
else
|
||||
url "https://github.com/bartvdbraak/keyweave/releases/download/v0.2.0/keyweave-x86_64-unknown-linux-musl.tar.xz"
|
||||
sha256 "6f6ad0810a4bf75d914dd09c4c55efadc8b038d10811c4223b787ac5d1cf4186"
|
||||
url "https://github.com/bartvdbraak/keyweave/releases/download/vv0.2.1/keyweave-x86_64-unknown-linux-musl.tar.xz"
|
||||
sha256 "16480a4692618b8b272a50384331672015468b9e25103926d6cbc0a9b2d15e77"
|
||||
end
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue