-
Notifications
You must be signed in to change notification settings - Fork 0
/
ftl.rb
67 lines (60 loc) · 2.07 KB
/
ftl.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
56
57
58
59
60
61
62
63
64
65
66
67
# typed: false
# frozen_string_literal: true
# This file was generated by GoReleaser. DO NOT EDIT.
class Ftl < Formula
desc "FTL - Towards a 𝝺-calculus for large-scale systems"
homepage "https://github.com/TBD54566975/ftl"
version "0.398.1"
on_macos do
on_intel do
url "https://github.com/TBD54566975/ftl/releases/download/v0.398.1/ftl-0.398.1.darwin-amd64.tar.gz"
sha256 "e54f2c1255c4d19a97f8d5ec4fbdb7a4906339da2219407f2c2688fa6b8f4184"
def install
bin.install "ftl"
bin.install "ftl-language-go"
bin.install "ftl-language-java"
bin.install "ftl-language-kotlin"
bin.install "ftl-language-python"
end
end
on_arm do
url "https://github.com/TBD54566975/ftl/releases/download/v0.398.1/ftl-0.398.1.darwin-arm64.tar.gz"
sha256 "232cecf87f57ad742cb4aaa720eeb112261aeca702c7a37688deaa80feffc007"
def install
bin.install "ftl"
bin.install "ftl-language-go"
bin.install "ftl-language-java"
bin.install "ftl-language-kotlin"
bin.install "ftl-language-python"
end
end
end
on_linux do
on_intel do
if Hardware::CPU.is_64_bit?
url "https://github.com/TBD54566975/ftl/releases/download/v0.398.1/ftl-0.398.1.linux-amd64.tar.gz"
sha256 "21e695dbd9bb9c3f9134024e6c4ca4923ac5bb4d95182310746207d4df883676"
def install
bin.install "ftl"
bin.install "ftl-language-go"
bin.install "ftl-language-java"
bin.install "ftl-language-kotlin"
bin.install "ftl-language-python"
end
end
end
on_arm do
if Hardware::CPU.is_64_bit?
url "https://github.com/TBD54566975/ftl/releases/download/v0.398.1/ftl-0.398.1.linux-arm64.tar.gz"
sha256 "07ea9a18c1b3fb7c5f8a721c859e8ae9b1222df92705680af723a322f47bbd6f"
def install
bin.install "ftl"
bin.install "ftl-language-go"
bin.install "ftl-language-java"
bin.install "ftl-language-kotlin"
bin.install "ftl-language-python"
end
end
end
end
end