homebrew-core/Formula/gflags.rb
Adam Blinkinsop 951f14472c gflags 1.5
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2011-07-06 15:05:11 -07:00

12 lines
344 B
Ruby

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