-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlakefs.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.51.0"
on_macos do
on_intel do
url "https://github.com/treeverse/lakeFS/releases/download/v1.51.0/lakeFS_1.51.0_Darwin_x86_64.tar.gz"
sha256 "50d36ad24fc19322cad2942ca16a22f5a909397f5f0142a500eb70862fbebfe9"
def install
bin.install "lakectl"
bin.install "lakefs"
end
end
on_arm do
url "https://github.com/treeverse/lakeFS/releases/download/v1.51.0/lakeFS_1.51.0_Darwin_arm64.tar.gz"
sha256 "6e83382a39b2d94f1f2ce7269708d17443a488d296626953bc7c74ea959891b2"
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.51.0/lakeFS_1.51.0_Linux_x86_64.tar.gz"
sha256 "e5da7525a7136fbfe67bf399ce402f3c1355f9d61c44d5639daa592632ba2d09"
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.51.0/lakeFS_1.51.0_Linux_arm64.tar.gz"
sha256 "1b07d1c236b82036551ab80bf197358cf667881738ba6ba700a24552013507e6"
def install
bin.install "lakectl"
bin.install "lakefs"
end
end
end
end
end