-
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 BuckarooAT220 < Formula
@@version = "2.2.0"
homepage "https://buckaroo.pm"
if OS.mac?
url "https://github.com/LoopPerfect/buckaroo/releases/download/v" + @@version + "/buckaroo-macos"
sha256 "4b81872b58d3aec5a95b0763b51d85a114f5bdff3dfe985cd72bf6e18bfe1ff1"
elsif OS.linux?
url "https://github.com/LoopPerfect/buckaroo/releases/download/v" + @@version + "/buckaroo-linux"
sha256 "23f9a4145a3e51f1205a4b265374c548fc4a4e9156e5121285f5c5bdb4d3228c"
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