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