homebrew-core/Formula/gflags.rb
Nibbles 2bits 7238921bdd gflags 1.6
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2011-09-22 22:59:25 -07:00

12 lines
344 B
Ruby

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