diff options
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/gflags.rb | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/Library/Formula/gflags.rb b/Library/Formula/gflags.rb index 83e98174d..12e319bff 100644 --- a/Library/Formula/gflags.rb +++ b/Library/Formula/gflags.rb @@ -1,12 +1,14 @@ require 'formula' class Gflags < Formula - homepage 'http://code.google.com/p/google-gflags/' - url 'https://gflags.googlecode.com/files/gflags-2.0.tar.gz' - sha1 'dfb0add1b59433308749875ac42796c41e824908' + homepage "http://code.google.com/p/google-gflags/" + url "https://github.com/schuhschuh/gflags/archive/v2.1.1.tar.gz" + sha1 "59b37548b10daeaa87a3093a11d13c2442ac6849" + + depends_on "cmake" => :build def install - system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}" + system "cmake", ".", *std_cmake_args system "make install" end end |
