24 lines
953 B
Ruby
24 lines
953 B
Ruby
require 'formula'
|
|
|
|
class Re2 < Formula
|
|
homepage 'https://code.google.com/p/re2/'
|
|
url 'https://re2.googlecode.com/files/re2-20140111.tgz'
|
|
sha1 'd51b3c2e870291070a1bcad8e5b471ae83e1f8df'
|
|
|
|
head 'https://re2.googlecode.com/hg'
|
|
|
|
def install
|
|
# https://code.google.com/p/re2/issues/detail?id=99
|
|
if ENV.compiler != :clang || MacOS.version < :mavericks
|
|
inreplace 'libre2.symbols.darwin',
|
|
# operator<<(std::__1::basic_ostream<char, std::__1::char_traits<char> >&, re2::StringPiece const&)
|
|
'__ZlsRNSt3__113basic_ostreamIcNS_11char_traitsIcEEEERKN3re211StringPieceE',
|
|
# operator<<(std::ostream&, re2::StringPiece const&)
|
|
'__ZlsRSoRKN3re211StringPieceE'
|
|
end
|
|
system "make", "install", "prefix=#{prefix}"
|
|
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"
|
|
end
|
|
end
|