aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorPaul Ingles2011-10-13 18:07:17 +0100
committerAdam Vandenberg2012-02-04 09:54:03 -0800
commit9914df10432081431f2ec1d9ffdad801391ed11c (patch)
treeb7f7e835f2a49d7ff43ebe4f84356d12f92a4309 /Library
parentaeb079cc996703e3c913c8075f2f2ce7a55d4675 (diff)
downloadhomebrew-9914df10432081431f2ec1d9ffdad801391ed11c.tar.bz2
msgpack-rpc 0.3.1
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/msgpack-rpc.rb15
1 files changed, 15 insertions, 0 deletions
diff --git a/Library/Formula/msgpack-rpc.rb b/Library/Formula/msgpack-rpc.rb
new file mode 100644
index 000000000..e78380410
--- /dev/null
+++ b/Library/Formula/msgpack-rpc.rb
@@ -0,0 +1,15 @@
+require 'formula'
+
+class MsgpackRpc < Formula
+ url 'http://msgpack.org/releases/cpp/msgpack-rpc-0.3.1.tar.gz'
+ homepage 'https://github.com/msgpack/msgpack-rpc'
+ md5 'e5e8f3631ac83d20cdf65fa0d7bfee21'
+
+ depends_on 'msgpack'
+ depends_on 'mpio'
+
+ def install
+ system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}"
+ system "make install"
+ end
+end