6ab205330f
Closes Homebrew/homebrew#21313. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
15 lines
377 B
Ruby
15 lines
377 B
Ruby
require 'formula'
|
|
|
|
class Concurrencykit < Formula
|
|
homepage 'http://concurrencykit.org'
|
|
url 'http://concurrencykit.org/releases/ck-0.2.20.tar.gz'
|
|
sha1 'bc99f50a99061b1a1310fee7200591c35fcbcc36'
|
|
|
|
head 'git://git.concurrencykit.org/ck.git'
|
|
|
|
def install
|
|
system "./configure", "--prefix=#{prefix}"
|
|
system "make", "CC=#{ENV.cc}"
|
|
system "make install"
|
|
end
|
|
end
|