A C++ command-line option parsing framework from Google.

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

* Removed unused switch
master
Douglas Creager 2010-04-29 10:31:30 -04:00 committed by Adam Vandenberg
parent 55bdf4198d
commit 23689d2343
1 changed files with 12 additions and 0 deletions

12
Formula/gflags.rb Normal file
View File

@ -0,0 +1,12 @@
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