homebrew-core/Formula/concurrencykit.rb
Austin Seipp 5d109c65a1 Concurrency Kit 0.1.4
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2011-12-17 15:50:45 -08:00

13 lines
332 B
Ruby

require 'formula'
class Concurrencykit < Formula
url 'http://concurrencykit.org/releases/ck-0.1.4.tar.gz'
homepage 'http://concurrencykit.org'
md5 '11f6f2145d12c48fd17845b39f492ceb'
head 'git://git.concurrencykit.org/ck.git'
def install
system "./configure", "--prefix=#{prefix}"
system "make install"
end
end