libbitcoin-blockchain: revision bump (boost 1.76.0)

master
Michka Popoff 2021-12-21 19:37:34 +01:00 committed by BrewTestBot
parent 7f5c3b6440
commit 1001722d05
No known key found for this signature in database
GPG Key ID: 82D7D104050B0F0F
1 changed files with 7 additions and 3 deletions

View File

@ -4,7 +4,7 @@ class LibbitcoinBlockchain < Formula
url "https://github.com/libbitcoin/libbitcoin-blockchain/archive/v3.6.0.tar.gz" url "https://github.com/libbitcoin/libbitcoin-blockchain/archive/v3.6.0.tar.gz"
sha256 "18c52ebda4148ab9e6dec62ee8c2d7826b60868f82710f21e40ff0131bc659e0" sha256 "18c52ebda4148ab9e6dec62ee8c2d7826b60868f82710f21e40ff0131bc659e0"
license "AGPL-3.0" license "AGPL-3.0"
revision 1 revision 2
bottle do bottle do
rebuild 1 rebuild 1
@ -21,6 +21,8 @@ class LibbitcoinBlockchain < Formula
depends_on "automake" => :build depends_on "automake" => :build
depends_on "libtool" => :build depends_on "libtool" => :build
depends_on "pkg-config" => :build depends_on "pkg-config" => :build
# https://github.com/libbitcoin/libbitcoin-system/issues/1234
depends_on "boost@1.76"
depends_on "libbitcoin-consensus" depends_on "libbitcoin-consensus"
depends_on "libbitcoin-database" depends_on "libbitcoin-database"
@ -31,11 +33,12 @@ class LibbitcoinBlockchain < Formula
system "./configure", "--disable-dependency-tracking", system "./configure", "--disable-dependency-tracking",
"--disable-silent-rules", "--disable-silent-rules",
"--prefix=#{prefix}", "--prefix=#{prefix}",
"--with-boost-libdir=#{Formula["boost"].opt_lib}" "--with-boost-libdir=#{Formula["boost@1.76"].opt_lib}"
system "make", "install" system "make", "install"
end end
test do test do
boost = Formula["boost@1.76"]
(testpath/"test.cpp").write <<~EOS (testpath/"test.cpp").write <<~EOS
#include <bitcoin/blockchain.hpp> #include <bitcoin/blockchain.hpp>
int main() { int main() {
@ -48,10 +51,11 @@ class LibbitcoinBlockchain < Formula
} }
EOS EOS
system ENV.cxx, "-std=c++11", "test.cpp", "-o", "test", system ENV.cxx, "-std=c++11", "test.cpp", "-o", "test",
"-I#{boost.include}",
"-I#{libexec}/include", "-I#{libexec}/include",
"-L#{Formula["libbitcoin"].opt_lib}", "-lbitcoin", "-L#{Formula["libbitcoin"].opt_lib}", "-lbitcoin",
"-L#{lib}", "-L#{libexec}/lib", "-lbitcoin-blockchain", "-L#{lib}", "-L#{libexec}/lib", "-lbitcoin-blockchain",
"-L#{Formula["boost"].opt_lib}", "-lboost_system" "-L#{boost.lib}", "-lboost_system"
system "./test" system "./test"
end end
end end