homebrew-core/Formula/msgpack.rb

18 lines
468 B
Ruby
Raw Normal View History

2010-03-22 22:56:32 +00:00
require 'formula'
2011-03-10 05:11:03 +00:00
class Msgpack < Formula
homepage 'http://msgpack.org/'
2012-02-04 17:45:57 +00:00
url 'http://msgpack.org/releases/cpp/msgpack-0.5.7.tar.gz'
sha256 '7c203265cf14a4723820e0fc7ac14bf4bad5578f7bc525e9835c70cd36e7d1b8'
2010-03-22 22:56:32 +00:00
# fails with the latest LLVM, but only on Lion?
fails_with :llvm do
cause "compilation fails"
end if MacOS.lion?
2010-03-22 22:56:32 +00:00
def install
system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}"
2010-03-22 22:56:32 +00:00
system "make install"
end
end