Concurrency Kit 0.1.0

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
master
Austin Seipp 2011-07-16 00:12:08 -05:00 committed by Adam Vandenberg
parent 118260e6e2
commit 8685eb00b8
1 changed files with 13 additions and 0 deletions

13
Formula/concurrencykit.rb Normal file
View File

@ -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