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.5.0.tar.gz" sha256 "37ef8d572fb7400565655501ffdea5d07a1de10f3d9fa823d33e2bf68ef8c3ce" revision 5 bottle do sha256 "dc1af32b76dda9995708b067822b99663980d89128a02522fa5c48b6a48a7b20" => :mojave sha256 "c425d20762801ee31b7daf1e47753b1d81b37ac80a5477b954f6117e1dd0813a" => :high_sierra sha256 "24221176a20df2ec8ede315ffb07694cb2319e1c43297b7a451fb4d3b2c5b286" => :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