homebrew-core/Formula/msgpack.rb

13 lines
344 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/'
url 'http://msgpack.org/releases/cpp/msgpack-0.5.6.tar.gz'
sha256 '4d4a2b50955e35b6b8e92247ee079467b3294db2378d5bc73e83c9bbe184545b'
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