aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Solovyov2009-11-14 11:32:52 +0200
committerMax Howell2009-12-22 05:49:27 +0000
commita6ac1e5ad206233b977e85ff1060440f77e4ac17 (patch)
treeca74045c20537ce208ed087efcf5298b997e4e72
parent14a174c479223a4ef985968e312b01c570379f46 (diff)
downloadhomebrew-a6ac1e5ad206233b977e85ff1060440f77e4ac17.tar.bz2
Gearman C server 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