-
Notifications
You must be signed in to change notification settings - Fork 3
33 lines (26 loc) · 975 Bytes
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
require "formula"
class BuckarooAT302 < Formula
@@version = "3.0.2"
homepage "https://buckaroo.pm"
if OS.mac?
url "https://github.com/LoopPerfect/buckaroo/releases/download/v" + @@version + "/buckaroo-macos"
sha256 "418f4afa74b9d9ba8e13983bb98ae190a7f46acc509a420a2459c85f0965498b"
elsif OS.linux?
url "https://github.com/LoopPerfect/buckaroo/releases/download/v" + @@version + "/buckaroo-linux"
sha256 "bcdb6e07bc3d9e2f84f1eb100c7bc9fa630f770eb230aa4f4b772c1b1492dcde"
end
def install
if OS.mac?
libexec.install "buckaroo-macos"
bin.install libexec/"buckaroo-macos" => "buckaroo"
elsif OS.linux?
libexec.install "buckaroo-linux"
bin.install libexec/"buckaroo-linux" => "buckaroo"
end
end
def caveats
"Anonymous usage statistics are enabled by default. \n" \
"For more information and instructions for disabling analytics, visit: \n" \
"https://github.com/LoopPerfect/buckaroo"
end
end