class LibbitcoinServer < Formula desc "Bitcoin Full Node and Query Server" homepage "https://github.com/libbitcoin/libbitcoin-server" url "https://github.com/libbitcoin/libbitcoin-server/archive/v3.6.0.tar.gz" sha256 "283fa7572fcde70a488c93e8298e57f7f9a8e8403e209ac232549b2c433674e1" revision 3 bottle do sha256 "2ff98a402c8430f385536d36f5cb1e41ada483571ffb9feadc6be622f70a8f79" => :catalina sha256 "a13046ec6e55b96b9ff107fc4eb6db2fdfc38d87d258dca290e50a24e6ce8e00" => :mojave sha256 "5dfaac345d848854823d28bf3d57ed9bea717a4206c4bd68952c980b912b8808" => :high_sierra end depends_on "autoconf" => :build depends_on "automake" => :build depends_on "libtool" => :build depends_on "pkg-config" => :build depends_on "libbitcoin-node" depends_on "libbitcoin-protocol" 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/bs" end test do (testpath/"test.cpp").write <<~EOS #include int main() { libbitcoin::server::message message(true); assert(message.secure() == true); return 0; } EOS system ENV.cxx, "-std=c++11", "test.cpp", "-o", "test", "-L#{Formula["libbitcoin"].opt_lib}", "-lbitcoin", "-L#{lib}", "-lbitcoin-server", "-L#{Formula["boost"].opt_lib}", "-lboost_system" system "./test" end end