homebrew-core/Formula/libbitcoin-blockchain.rb
2017-09-25 21:17:24 -07:00

75 lines
2.9 KiB
Ruby

class LibbitcoinBlockchain < Formula
desc "Bitcoin Blockchain Library"
homepage "https://github.com/libbitcoin/libbitcoin-blockchain"
url "https://github.com/libbitcoin/libbitcoin-blockchain/archive/v3.3.0.tar.gz"
sha256 "c97762f37e30b0d41b5f9d70499dbf9ca70096924410e98a15781e4cb5c39966"
bottle do
sha256 "c437aa44016f52c37a7a0c19150f842cefa671dd1d3a3f0088f368255c4892f1" => :high_sierra
sha256 "01ad1dec80291fbebd3b9d2a48ca30bfa3fe6d2ec8d35626987e06528365d185" => :sierra
sha256 "6a60c5cc77cd949c498bef459da8dab8c352afc626c053dc928b993a31966a2a" => :el_capitan
end
depends_on "autoconf" => :build
depends_on "automake" => :build
depends_on "libtool" => :build
depends_on "pkg-config" => :build
depends_on "libbitcoin"
resource "libbitcoin-consensus" do
url "https://github.com/libbitcoin/libbitcoin-consensus/archive/v3.3.0.tar.gz"
sha256 "ae581f7c42a52fb6f4a233300f76f2a2d03a22eee6d4bfe22b233e9b52f029b4"
end
resource "libbitcoin-database" do
url "https://github.com/libbitcoin/libbitcoin-database/archive/v3.3.0.tar.gz"
sha256 "b4d98199ac4629a9857c1eb8819fe8166525bf2dca9ed790a9bbe5dc9c9e9186"
end
def install
ENV.prepend_path "PKG_CONFIG_PATH", Formula["libbitcoin"].opt_libexec/"lib/pkgconfig"
ENV.prepend_create_path "PKG_CONFIG_PATH", libexec/"lib/pkgconfig"
resource("libbitcoin-consensus").stage do
system "./autogen.sh"
system "./configure", "--disable-dependency-tracking",
"--disable-silent-rules",
"--prefix=#{libexec}"
system "make", "install"
end
resource("libbitcoin-database").stage do
system "./autogen.sh"
system "./configure", "--disable-dependency-tracking",
"--disable-silent-rules",
"--prefix=#{libexec}"
system "make", "install"
end
system "./autogen.sh"
system "./configure", "--disable-dependency-tracking",
"--disable-silent-rules",
"--prefix=#{prefix}"
system "make", "install"
end
test do
(testpath/"test.cpp").write <<-EOS.undent
#include <bitcoin/blockchain.hpp>
int main() {
static const auto default_block_hash = libbitcoin::hash_literal("14508459b221041eab257d2baaa7459775ba748246c8403609eb708f0e57e74b");
const auto block = std::make_shared<const libbitcoin::message::block>();
libbitcoin::blockchain::block_entry instance(block);
assert(instance.block() == block);
assert(instance.hash() == default_block_hash);
return 0;
}
EOS
system ENV.cxx, "-std=c++11", "test.cpp",
"-I#{libexec}/include",
"-L#{lib}", "-L#{libexec}/lib",
"-lbitcoin", "-lbitcoin-blockchain", "-lboost_system",
"-o", "test"
system "./test"
end
end