gflags
A C++ command-line option parsing framework from Google. Signed-off-by: Adam Vandenberg <flangy@gmail.com> * Removed unused switch
This commit is contained in:
parent
55bdf4198d
commit
23689d2343
1 changed files with 12 additions and 0 deletions
12
Formula/gflags.rb
Normal file
12
Formula/gflags.rb
Normal 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
|
Loading…
Reference in a new issue