homebrew-core/Formula/msgpack.rb
Adam Vandenberg e29c82848d msgpack 0.5.7
2012-02-04 09:45:57 -08:00

12 lines
344 B
Ruby

require 'formula'
class Msgpack < Formula
homepage 'http://msgpack.org/'
url 'http://msgpack.org/releases/cpp/msgpack-0.5.7.tar.gz'
sha256 '7c203265cf14a4723820e0fc7ac14bf4bad5578f7bc525e9835c70cd36e7d1b8'
def install
system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}"
system "make install"
end
end