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