2013-06-19 06:17:34 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Re2 < Formula
|
|
|
|
homepage 'https://code.google.com/p/re2/'
|
2014-01-16 05:41:28 +00:00
|
|
|
url 'https://re2.googlecode.com/files/re2-20140111.tgz'
|
|
|
|
sha1 'd51b3c2e870291070a1bcad8e5b471ae83e1f8df'
|
|
|
|
|
2013-06-19 06:17:34 +00:00
|
|
|
head 'https://re2.googlecode.com/hg'
|
|
|
|
|
|
|
|
def install
|
2014-01-16 05:41:28 +00:00
|
|
|
# https://code.google.com/p/re2/issues/detail?id=99
|
|
|
|
if MacOS.version < :mavericks
|
|
|
|
inreplace 'libre2.symbols.darwin',
|
|
|
|
'__ZlsRNSt3__113basic_ostreamIcNS_11char_traitsIcEEEERKN3re211StringPieceE',
|
|
|
|
'__ZlsRSoRKN3re211StringPieceE'
|
|
|
|
end
|
2013-06-19 06:17:34 +00:00
|
|
|
system "make", "install", "prefix=#{prefix}"
|
2014-01-16 05:41:28 +00:00
|
|
|
mv lib/"libre2.so.0.0.0", lib/"libre2.0.0.0.dylib"
|
|
|
|
ln_s "libre2.0.0.0.dylib", lib/"libre2.0.dylib"
|
|
|
|
ln_s "libre2.0.0.0.dylib", lib/"libre2.dylib"
|
2013-06-19 06:17:34 +00:00
|
|
|
end
|
|
|
|
end
|