homebrew-core/Formula/concurrencykit.rb
Brett Koonce 9e5e8aa141 ck 0.2.12
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2012-11-30 20:39:55 -08:00

15 lines
377 B
Ruby

require 'formula'
class Concurrencykit < Formula
homepage 'http://concurrencykit.org'
url 'http://concurrencykit.org/releases/ck-0.2.12.tar.gz'
sha1 '538638f3233b77c57efcfe8ad226f6098be9a0b2'
head 'git://git.concurrencykit.org/ck.git'
def install
system "./configure", "--prefix=#{prefix}"
system "make", "CC=#{ENV.cc}"
system "make install"
end
end