blob: 83e98174d018f30c2e1e36373212924fddf88b21 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
require 'formula'
class Gflags < Formula
homepage 'http://code.google.com/p/google-gflags/'
url 'https://gflags.googlecode.com/files/gflags-2.0.tar.gz'
sha1 'dfb0add1b59433308749875ac42796c41e824908'
def install
system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}"
system "make install"
end
end
|