class Folly < Formula desc "Collection of reusable C++ library artifacts developed at Facebook" homepage "https://github.com/facebook/folly" url "https://github.com/facebook/folly/archive/v2018.06.04.00.tar.gz" sha256 "4446b0affebb0865b067cacd59287df85bff8d8b53cf1e1e15197094caa0950c" head "https://github.com/facebook/folly.git" bottle do cellar :any sha256 "409623a6430de8553bbabfb93825271a5bbd874ee66b6b130875f64b69ab871b" => :high_sierra sha256 "da70c7480f7185dbe540eca54fae691e78a9c5d912767a6b0351280692001b37" => :sierra sha256 "484619b72d06adcf12a38d085a57c0fd5a8fcf2dc81ba8bf80fe32d6c0cb668d" => :el_capitan end depends_on "autoconf" => :build depends_on "automake" => :build depends_on "libtool" => :build depends_on "pkg-config" => :build depends_on "double-conversion" depends_on "glog" depends_on "gflags" depends_on "boost" depends_on "libevent" depends_on "xz" depends_on "snappy" depends_on "lz4" depends_on "openssl" # https://github.com/facebook/folly/issues/451 depends_on :macos => :el_capitan needs :cxx11 # Known issue upstream. They're working on it: # https://github.com/facebook/folly/pull/445 fails_with :gcc => "6" def install ENV.cxx11 cd "folly" do system "autoreconf", "-fvi" system "./configure", "--prefix=#{prefix}", "--disable-silent-rules", "--disable-dependency-tracking" system "make" system "make", "install" end end test do (testpath/"test.cc").write <<~EOS #include int main() { folly::fbvector numbers({0, 1, 2, 3}); numbers.reserve(10); for (int i = 4; i < 10; i++) { numbers.push_back(i * 2); } assert(numbers[6] == 12); return 0; } EOS system ENV.cxx, "-std=c++11", "test.cc", "-I#{include}", "-L#{lib}", "-lfolly", "-o", "test" system "./test" end end