homebrew-core/Formula/re2.rb
Doug Fritz fa9d62b058 added re2 formula
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2010-10-30 20:28:22 -07:00

17 lines
316 B
Ruby

require 'formula'
class Re2 <Formula
head 'https://re2.googlecode.com/hg'
homepage 'http://code.google.com/p/re2/'
def install
inreplace 'Makefile' do |s|
s.change_make_var! "prefix", prefix
s.gsub! ".so", ".dylib"
end
lib.mkdir
system "make"
system "make install"
end
end