install

in fbthrift-compiler.rb [40:57]


  def install
    cd "thrift" do
      system "autoreconf", "-i"

      system "./configure",
          "--disable-debug",
          "--disable-dependency-tracking",
          "--disable-silent-rules",
          "--prefix=#{prefix}",
          "--without-python", 
          "--without-cpp", 
          "--with-boost=#{HOMEBREW_PREFIX}",
          "--with-folly=#{HOMEBREW_PREFIX}"

      system "make", "install"
    end
  end