aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/gearman.rb12
1 files changed, 12 insertions, 0 deletions
diff --git a/Library/Formula/gearman.rb b/Library/Formula/gearman.rb
new file mode 100644
index 000000000..20728e315
--- /dev/null
+++ b/Library/Formula/gearman.rb
@@ -0,0 +1,12 @@
+require 'formula'
+
+class Gearman <Formula
+ url 'http://launchpad.net/gearmand/trunk/0.10/+download/gearmand-0.10.tar.gz'
+ homepage 'http://gearman.org/'
+ md5 '74d29c260bc7096c9193d3f6af57298f'
+
+ def install
+ system "./configure", "--prefix=#{prefix}"
+ system "make install"
+ end
+end