aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/gflags.rb
blob: a3ba91ec4c4ba2b595c921a36f78d47ffd155304 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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