2010-03-22 22:56:32 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Msgpack < Formula
|
2011-05-22 01:08:13 +00:00
|
|
|
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
|
|
|
|
2012-02-08 02:05:18 +00:00
|
|
|
# fails with the latest LLVM, but only on Lion?
|
|
|
|
fails_with_llvm "Compilation fails" if MacOS.lion?
|
|
|
|
|
2010-03-22 22:56:32 +00:00
|
|
|
def install
|
2010-07-01 23:11:09 +00:00
|
|
|
system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}"
|
2010-03-22 22:56:32 +00:00
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|