aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorAustin Seipp2011-07-16 00:12:08 -0500
committerAdam Vandenberg2011-12-04 21:16:35 -0800
commit2cd086421ee5b01e3684a938795d4d8c12979db7 (patch)
treefaf8f0e83818f7ea4e16c443ea2470177ef8d90f /Library/Formula
parentd178a865e8412be24b3267ded7a92147030cb745 (diff)
downloadhomebrew-2cd086421ee5b01e3684a938795d4d8c12979db7.tar.bz2
Concurrency Kit 0.1.0
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/concurrencykit.rb13
1 files changed, 13 insertions, 0 deletions
diff --git a/Library/Formula/concurrencykit.rb b/Library/Formula/concurrencykit.rb
new file mode 100644
index 000000000..49cfd88a0
--- /dev/null
+++ b/Library/Formula/concurrencykit.rb
@@ -0,0 +1,13 @@
+require 'formula'
+
+class Concurrencykit < Formula
+ url 'http://concurrencykit.org/releases/ck-0.1.0.tar.gz'
+ homepage 'http://concurrencykit.org'
+ md5 '1832e4d0b7fb31a159d50ab3e66b8979'
+ head 'git://git.concurrencykit.org/ck.git'
+
+ def install
+ system "./configure", "--prefix=#{prefix}"
+ system "make install"
+ end
+end