homebrew-core/Formula/concurrencykit.rb
Francisco Souza bd578d2317 concurrencykit 0.3.2
Closes Homebrew/homebrew#23404.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2013-10-21 20:03:39 -07:00

15 lines
376 B
Ruby

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