class Libbitcoin < Formula desc "Bitcoin Cross-Platform C++ Development Toolkit" homepage "https://github.com/libbitcoin/libbitcoin-system" url "https://github.com/libbitcoin/libbitcoin-system/archive/v3.6.0.tar.gz" sha256 "5bcc4c31b53acbc9c0d151ace95d684909db4bf946f8d724f76c711934c6775c" revision 3 bottle do cellar :any sha256 "8ee84fd2c1ca6f36b5e064af6c131e692a2478f66f90dc950547d06594083b12" => :catalina sha256 "f80a081ef5f8ad92941279e4ac5483b5f68897f6a5f8d3367b8d65603663e82b" => :mojave sha256 "a5f18c5a179363df523c5aeb9d7cc8f3d2c9f7fa06e3092a37d80b95bf9edd94" => :high_sierra end depends_on "autoconf" => :build depends_on "automake" => :build depends_on "libtool" => :build depends_on "pkg-config" => :build depends_on "boost" depends_on "libpng" depends_on "qrencode" resource "secp256k1" do url "https://github.com/libbitcoin/secp256k1/archive/v0.1.0.13.tar.gz" sha256 "9e48dbc88d0fb5646d40ea12df9375c577f0e77525e49833fb744d3c2a69e727" end def install resource("secp256k1").stage do system "./autogen.sh" system "./configure", "--disable-dependency-tracking", "--disable-silent-rules", "--prefix=#{libexec}", "--enable-module-recovery", "--with-bignum=no" system "make", "install" end ENV.prepend_path "PKG_CONFIG_PATH", "#{libexec}/lib/pkgconfig" system "./autogen.sh" system "./configure", "--disable-dependency-tracking", "--disable-silent-rules", "--prefix=#{prefix}", "--with-png", "--with-qrencode" system "make", "install" end test do (testpath/"test.cpp").write <<~EOS #include int main() { const auto block = bc::chain::block::genesis_mainnet(); const auto& tx = block.transactions().front(); const auto& input = tx.inputs().front(); const auto script = input.script().to_data(false); std::string message(script.begin() + sizeof(uint64_t), script.end()); std::cout << message << std::endl; return 0; } EOS system ENV.cxx, "-std=c++11", "test.cpp", "-L#{lib}", "-lbitcoin", "-L#{Formula["boost"].opt_lib}", "-lboost_system", "-o", "test" system "./test" end end