25 lines
837 B
Ruby
25 lines
837 B
Ruby
class Wagyu < Formula
|
|
desc "Rust library for generating cryptocurrency wallets"
|
|
homepage "https://github.com/ArgusHQ/wagyu"
|
|
url "https://github.com/ArgusHQ/wagyu/archive/v0.6.1.tar.gz"
|
|
sha256 "2458b3d49653acd5df5f3161205301646527eca9f6ee3d84c7871afa275bad9f"
|
|
head "https://github.com/ArgusHQ/wagyu.git"
|
|
|
|
bottle do
|
|
cellar :any_skip_relocation
|
|
rebuild 1
|
|
sha256 "69e6539d7e3801aaea4cd14acd48684f703a4c1cac0f04790d3ada827daf77f9" => :catalina
|
|
sha256 "0b6fd9b45280ecac2586b191303e0e643ef14c85cad06b6aca73e51e7af6ae46" => :mojave
|
|
sha256 "c2175413a53a69da950ca7b879afc882f2181a34cb633e823bf2a3dc29675fc4" => :high_sierra
|
|
end
|
|
|
|
depends_on "rust" => :build
|
|
|
|
def install
|
|
system "cargo", "install", "--locked", "--root", prefix, "--path", "."
|
|
end
|
|
|
|
test do
|
|
system "#{bin}/wagyu", "bitcoin"
|
|
end
|
|
end
|