blob: 264ef2d61637778758396a1bce4b0f00028a7396 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
require 'formula'
class Msgpack < Formula
homepage 'http://msgpack.org/'
url 'http://msgpack.org/releases/cpp/msgpack-0.5.7.tar.gz'
sha256 '7c203265cf14a4723820e0fc7ac14bf4bad5578f7bc525e9835c70cd36e7d1b8'
# fails with the latest LLVM, but only on Lion?
fails_with_llvm "Compilation fails" if MacOS.lion?
def install
system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}"
system "make install"
end
end
|