homebrew-core/Formula/concurrencykit.rb
Austin Seipp 8685eb00b8 Concurrency Kit 0.1.0
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2011-12-04 21:16:35 -08:00

13 lines
332 B
Ruby

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