40 lines
1.2 KiB
Ruby
40 lines
1.2 KiB
Ruby
class Glog < Formula
|
|
desc "Application-level logging library"
|
|
homepage "https://github.com/google/glog"
|
|
url "https://github.com/google/glog/archive/v0.3.5.tar.gz"
|
|
sha256 "7580e408a2c0b5a89ca214739978ce6ff480b5e7d8d7698a2aa92fadc484d1e0"
|
|
revision 2
|
|
head "https://github.com/google/glog.git"
|
|
|
|
bottle do
|
|
cellar :any
|
|
sha256 "5e99439a7336024749810f022c255c8200b892ff04c0843225d873f9a101154f" => :high_sierra
|
|
sha256 "3d6da0942515486003959c724fc4d946dbb4032d458d78d0a81442832817028b" => :sierra
|
|
sha256 "5e9ccc48a1391e677775ea1fd586589c2ca14cdb36e21c9e566887f1b9319d17" => :el_capitan
|
|
end
|
|
|
|
depends_on "cmake" => :build
|
|
depends_on "gflags"
|
|
|
|
def install
|
|
mkdir "build" do
|
|
system "cmake", "..", "-DBUILD_SHARED_LIBS=ON", *std_cmake_args
|
|
system "make", "install"
|
|
end
|
|
end
|
|
|
|
test do
|
|
(testpath/"test.cpp").write <<~EOS
|
|
#include <glog/logging.h>
|
|
#include <iostream>
|
|
#include <memory>
|
|
int main(int argc, char* argv[])
|
|
{
|
|
google::InitGoogleLogging(argv[0]);
|
|
LOG(INFO) << "test";
|
|
}
|
|
EOS
|
|
system ENV.cxx, "-std=c++11", "test.cpp", "-I#{include}", "-L#{lib}", "-lglog", "-lgflags", "-o", "test"
|
|
system "./test"
|
|
end
|
|
end
|