Add msgpack library.

master
Adam Vandenberg 2010-03-22 15:56:32 -07:00
parent 4449745e43
commit 57b8449056
1 changed files with 12 additions and 0 deletions

12
Formula/msgpack.rb Normal file
View File

@ -0,0 +1,12 @@
require 'formula'
class Msgpack <Formula
url 'http://downloads.sourceforge.net/project/msgpack/msgpack/cpp/msgpack-0.4.3.tar.gz'
homepage 'http://msgpack.sourceforge.net/'
md5 'ae55b5a48221fabc587a9ff2b0b6106e'
def install
system "./configure", "--disable-debug", "--disable-dependency-tracking", "--prefix=#{prefix}"
system "make install"
end
end