aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorPete Gadomski2014-11-19 16:30:11 -0700
committerMike McQuaid2014-11-20 15:37:12 +0000
commitfc18d80715e33ef17f0c238413e2ce51f0077cc6 (patch)
treed30931772f1dd18cd62451c8d4aeafce5430abb8 /Library/Formula
parente7bdd88dbb6a47d7831fff7e3be294cac39bd752 (diff)
downloadhomebrew-fc18d80715e33ef17f0c238413e2ce51f0077cc6.tar.bz2
gflags 2.1.1
Update gflags to 2.1.1. Closes #34344. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/gflags.rb10
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