homebrew-core/Formula/gflags.rb
Douglas Creager 23689d2343 gflags
A C++ command-line option parsing framework from Google.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>

* Removed unused switch
2010-04-29 08:30:36 -07:00

12 lines
334 B
Ruby

require 'formula'
class Gflags <Formula
url 'http://google-gflags.googlecode.com/files/gflags-1.3.tar.gz'
homepage 'http://code.google.com/p/google-gflags/'
md5 '6da3d3b9cd82c222b521ae686b6cfa8b'
def install
system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}"
system "make install"
end
end