-
Notifications
You must be signed in to change notification settings - Fork 0
/
lakefs.rb
55 lines (48 loc) · 1.68 KB
/
lakefs.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
# typed: false
# frozen_string_literal: true
# This file was generated by GoReleaser. DO NOT EDIT.
class Lakefs < Formula
desc "lakeFS is an open-source tool that transforms your object storage into a Git-like repository. It enables you to manage your data lake the way you manage your code."
homepage "https://github.com/treeverse/lakefs"
version "1.43.0"
on_macos do
on_intel do
url "https://github.com/treeverse/lakeFS/releases/download/v1.43.0/lakeFS_1.43.0_Darwin_x86_64.tar.gz"
sha256 "ca32b99d74758914f3bf046160608bf5239e2850a37eacf34a02ec425dcf66c4"
def install
bin.install "lakectl"
bin.install "lakefs"
end
end
on_arm do
url "https://github.com/treeverse/lakeFS/releases/download/v1.43.0/lakeFS_1.43.0_Darwin_arm64.tar.gz"
sha256 "dc4baa787561324c35a516c63c0dae32b44372c9002b7d50b59d8ea5c1096283"
def install
bin.install "lakectl"
bin.install "lakefs"
end
end
end
on_linux do
on_intel do
if Hardware::CPU.is_64_bit?
url "https://github.com/treeverse/lakeFS/releases/download/v1.43.0/lakeFS_1.43.0_Linux_x86_64.tar.gz"
sha256 "eb801797029c98ff7fafa048635389c7bf9d224c7cd542ca1badb66f3e5596bc"
def install
bin.install "lakectl"
bin.install "lakefs"
end
end
end
on_arm do
if Hardware::CPU.is_64_bit?
url "https://github.com/treeverse/lakeFS/releases/download/v1.43.0/lakeFS_1.43.0_Linux_arm64.tar.gz"
sha256 "83a4f99f58f45e0ba6718c9b158c2bc30377e9019fad1347634251c55e9bfaf1"
def install
bin.install "lakectl"
bin.install "lakefs"
end
end
end
end
end