54 lines
2.1 KiB
Ruby
54 lines
2.1 KiB
Ruby
class Monero < Formula
|
|
desc "Official monero wallet and cpu miner"
|
|
homepage "https://getmonero.org/"
|
|
url "https://github.com/monero-project/monero/archive/v0.12.0.0.tar.gz"
|
|
sha256 "5e8303900a39e296c4ebaa41d957ab9ee04e915704e1049f82a9cbd4eedc8ffb"
|
|
revision 3
|
|
|
|
bottle do
|
|
cellar :any
|
|
sha256 "f58fd267783d40730adbee550c6313f1d243b5645c5dbb32539fb70fc9193a63" => :high_sierra
|
|
sha256 "c2248d4af891fd74267d1b3f80620d16e5636d31782f16a0a88a7162bda7a0e6" => :sierra
|
|
sha256 "6b8975a55c20163255ba0a3f5954d2bfad4839e2bddcb2e01e916c952bf59e14" => :el_capitan
|
|
end
|
|
|
|
depends_on "cmake" => :build
|
|
depends_on "pkg-config" => :build
|
|
depends_on "boost"
|
|
depends_on "miniupnpc"
|
|
depends_on "openssl"
|
|
depends_on "readline"
|
|
depends_on "unbound"
|
|
depends_on "zeromq"
|
|
|
|
# Fix "fatal error: 'boost/thread/v2/thread.hpp' file not found"
|
|
# https://github.com/monero-project/monero/pull/3667
|
|
patch do
|
|
url "https://github.com/monero-project/monero/commit/53a1962da18f952f6eb4683a846e52fe122520e2.patch?full_index=1"
|
|
sha256 "c5869f9da9429047fdad4386d0310cd88aae499a9ff148120612ab52c5a20b74"
|
|
end
|
|
|
|
resource "cppzmq" do
|
|
url "https://github.com/zeromq/cppzmq/archive/v4.2.3.tar.gz"
|
|
sha256 "3e6b57bf49115f4ae893b1ff7848ead7267013087dc7be1ab27636a97144d373"
|
|
end
|
|
|
|
def install
|
|
(buildpath/"cppzmq").install resource("cppzmq")
|
|
system "cmake", ".", "-DZMQ_INCLUDE_PATH=#{buildpath}/cppzmq",
|
|
"-DReadline_ROOT_DIR=#{Formula["readline"].opt_prefix}",
|
|
*std_cmake_args
|
|
system "make", "install"
|
|
end
|
|
|
|
test do
|
|
cmd = "yes '' | #{bin}/monero-wallet-cli --restore-deterministic-wallet " \
|
|
"--password brew-test --restore-height 1 --generate-new-wallet wallet " \
|
|
"--electrum-seed 'baptism cousin whole exquisite bobsled fuselage left " \
|
|
"scoop emerge puzzled diet reinvest basin feast nautical upon mullet " \
|
|
"ponies sixteen refer enhanced maul aztec bemused basin'" \
|
|
"--command address"
|
|
address = "4BDtRc8Ym9wGzx8vpkQQvpejxBNVpjEmVBebBPCT4XqvMxW3YaCALFraiQibejyMAxUXB5zqn4pVgHVm3JzhP2WzVAJDpHf"
|
|
assert_equal address, shell_output(cmd).lines.last.split[1]
|
|
end
|
|
end
|