-
Notifications
You must be signed in to change notification settings - Fork 2
/
buffalo-cli.rb
29 lines (27 loc) · 1.18 KB
/
buffalo-cli.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
# This file was generated by GoReleaser. DO NOT EDIT.
class BuffaloCli < Formula
desc ""
homepage ""
version "2.0.0-alpha.15"
if OS.mac?
url "https://github.com/gobuffalo/buffalo-cli/releases/download/v2.0.0-alpha.15/buffalo-cli_2.0.0-alpha.15_Darwin_x86_64.tar.gz"
sha256 "db98d9b361121813a914b8bb6bc6d53aef3370a7550338fc9958c5aa149a926c"
elsif OS.linux?
if Hardware::CPU.intel?
url "https://github.com/gobuffalo/buffalo-cli/releases/download/v2.0.0-alpha.15/buffalo-cli_2.0.0-alpha.15_Linux_x86_64.tar.gz"
sha256 "7d7bb13f99dbf45e734f171b52df1b803c60b4cdb352614b386bd7c175a4ef12"
end
if Hardware::CPU.arm?
if Hardware::CPU.is_64_bit?
url "https://github.com/gobuffalo/buffalo-cli/releases/download/v2.0.0-alpha.15/buffalo-cli_2.0.0-alpha.15_Linux_arm64.tar.gz"
sha256 "9c016d8728081cc33dbb673d8fc226a12168cdabea3f381f638925e9fae0b326"
else
url "https://github.com/gobuffalo/buffalo-cli/releases/download/v2.0.0-alpha.15/buffalo-cli_2.0.0-alpha.15_Linux_armv6.tar.gz"
sha256 "40eb1724c6d6a261166a980adc817a04c7e2eb505869f4dea911404f4d665415"
end
end
end
def install
bin.install "buffalo-cli"
end
end