re2 20130802

Closes Homebrew/homebrew#20597.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
This commit is contained in:
Alex Kantchelian 2013-06-18 23:17:34 -07:00 committed by Adam Vandenberg
parent f55d19b0ed
commit 1691655987

12
Formula/re2.rb Normal file
View file

@ -0,0 +1,12 @@
require 'formula'
class Re2 < Formula
homepage 'https://code.google.com/p/re2/'
head 'https://re2.googlecode.com/hg'
url 'https://re2.googlecode.com/files/re2-20130802.tgz'
sha1 'c2cf57ecd63b754da3021212198c517540276572'
def install
system "make", "install", "prefix=#{prefix}"
end
end