homebrew-core/Formula/concurrencykit.rb
Brett Koonce 2fc793742f concurrencykit 0.2.11
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2012-10-19 19:03:19 -07:00

15 lines
377 B
Ruby

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