blob: 49f0da80227375817903911787df2b8d29426241 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
require 'formula'
class Msgpack < Formula
homepage 'http://msgpack.org/'
url 'http://msgpack.org/releases/cpp/msgpack-0.5.6.tar.gz'
sha256 '4d4a2b50955e35b6b8e92247ee079467b3294db2378d5bc73e83c9bbe184545b'
def install
system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}"
system "make install"
end
end
|