aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/moxi.rb16
1 files changed, 16 insertions, 0 deletions
diff --git a/Library/Formula/moxi.rb b/Library/Formula/moxi.rb
new file mode 100644
index 000000000..0fd23d028
--- /dev/null
+++ b/Library/Formula/moxi.rb
@@ -0,0 +1,16 @@
+require 'formula'
+
+class Moxi <Formula
+ url 'http://labs.northscale.com/moxi/moxi-0.10.0.tar.gz'
+ homepage 'http://labs.northscale.com/moxi/'
+ md5 'ec73c7521324321eb4c8b4f51f9d7373'
+
+ depends_on 'pkg-config'
+ depends_on 'check'
+ depends_on 'libevent'
+
+ def install
+ system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
+ system "make install"
+ end
+end