48 lines
1.8 KiB
Ruby
48 lines
1.8 KiB
Ruby
class LibbitcoinExplorer < Formula
|
|
desc "Bitcoin command-line tool"
|
|
homepage "https://github.com/libbitcoin/libbitcoin-explorer"
|
|
url "https://github.com/libbitcoin/libbitcoin-explorer/archive/v3.5.0.tar.gz"
|
|
sha256 "630cffd577c0d10345b44ce8160f4604519b0ca69bf201f524f104c207b930aa"
|
|
revision 3
|
|
|
|
bottle do
|
|
sha256 "5a7a5e997aba0511b31ce9faa532e8e848aa607f434b192ad246d332529dfcdc" => :high_sierra
|
|
sha256 "ff6c6b26c3f476af67a05a97b0d9a302d1d6ee867bde7aaf82c33fac7350c2d3" => :sierra
|
|
sha256 "b26cb3a9251f62366f8cd5d1db36a4a8b33bee1c425efbe0991ced08e52f9632" => :el_capitan
|
|
end
|
|
|
|
depends_on "autoconf" => :build
|
|
depends_on "automake" => :build
|
|
depends_on "libtool" => :build
|
|
depends_on "pkg-config" => :build
|
|
depends_on "libbitcoin-client"
|
|
depends_on "libbitcoin-network"
|
|
|
|
def install
|
|
ENV.prepend_path "PKG_CONFIG_PATH", Formula["libbitcoin"].opt_libexec/"lib/pkgconfig"
|
|
|
|
system "./autogen.sh"
|
|
system "./configure", "--disable-dependency-tracking",
|
|
"--disable-silent-rules",
|
|
"--prefix=#{prefix}"
|
|
system "make", "install"
|
|
|
|
bash_completion.install "data/bx"
|
|
end
|
|
|
|
test do
|
|
seed = "7aaa07602b34e49dd9fd13267dcc0f368effe0b4ce15d107"
|
|
expected_private_key = "5b4e3cba38709f0d80aff509c1cc87eea9dad95bb34b09eb0ce3e8dbc083f962"
|
|
expected_public_key = "023b899a380c81b35647fff5f7e1988c617fe8417a5485217e653cda80bc4670ef"
|
|
expected_address = "1AxX5HyQi7diPVXUH2ji7x5k6jZTxbkxfW"
|
|
|
|
private_key = shell_output("#{bin}/bx ec-new #{seed}").chomp
|
|
assert_equal expected_private_key, private_key
|
|
|
|
public_key = shell_output("#{bin}/bx ec-to-public #{private_key}").chomp
|
|
assert_equal expected_public_key, public_key
|
|
|
|
address = shell_output("#{bin}/bx ec-to-address #{public_key}").chomp
|
|
assert_equal expected_address, address
|
|
end
|
|
end
|