-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: Brew formula update for target-jsonl-blob version v0.0.6
- Loading branch information
1 parent
2d23e04
commit 82c0467
Showing
1 changed file
with
48 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
# typed: false | ||
# frozen_string_literal: true | ||
|
||
# This file was generated by GoReleaser. DO NOT EDIT. | ||
class TargetJsonlBlob < Formula | ||
desc "JSONL Singer target for local storage, S3 and Azure Blob Storage." | ||
homepage "https://github.com/MeltanoLabs/target-jsonl-blob" | ||
version "0.0.6" | ||
license "Apache-2.0" | ||
|
||
on_macos do | ||
if Hardware::CPU.intel? | ||
url "https://github.com/MeltanoLabs/target-jsonl-blob/releases/download/v0.0.6/target-jsonl-blob_0.0.6_darwin_amd64.tar.gz" | ||
sha256 "7accbf7f27b941a80c7144f520d23e1554dd77e441054eea52c99ccf14a15e20" | ||
|
||
def install | ||
bin.install "target-jsonl-blob" | ||
end | ||
end | ||
if Hardware::CPU.arm? | ||
url "https://github.com/MeltanoLabs/target-jsonl-blob/releases/download/v0.0.6/target-jsonl-blob_0.0.6_darwin_arm64.tar.gz" | ||
sha256 "9f0bb4cd1a38df92f9b74d5ff78a57eb08d352d5080d7ac9c9ead55fa89ecd5e" | ||
|
||
def install | ||
bin.install "target-jsonl-blob" | ||
end | ||
end | ||
end | ||
|
||
on_linux do | ||
if Hardware::CPU.intel? | ||
url "https://github.com/MeltanoLabs/target-jsonl-blob/releases/download/v0.0.6/target-jsonl-blob_0.0.6_linux_amd64.tar.gz" | ||
sha256 "2fb297b7eaad2e2f7317ef39fbd9c8b5efa4573343bc26139955f009e6d4e088" | ||
|
||
def install | ||
bin.install "target-jsonl-blob" | ||
end | ||
end | ||
if Hardware::CPU.arm? && Hardware::CPU.is_64_bit? | ||
url "https://github.com/MeltanoLabs/target-jsonl-blob/releases/download/v0.0.6/target-jsonl-blob_0.0.6_linux_arm64.tar.gz" | ||
sha256 "73a9801512707374274a956eb256d89cd7c115eae475da3f71acb517bc1e3dc2" | ||
|
||
def install | ||
bin.install "target-jsonl-blob" | ||
end | ||
end | ||
end | ||
end |