2011-07-16 05:12:08 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Concurrencykit < Formula
|
|
|
|
homepage 'http://concurrencykit.org'
|
2012-10-19 21:14:10 +00:00
|
|
|
url 'http://concurrencykit.org/releases/ck-0.2.11.tar.gz'
|
|
|
|
sha1 '90aa90d657f85ae38f4b294720aed812e1b502b2'
|
2012-06-12 04:05:47 +00:00
|
|
|
|
2011-07-16 05:12:08 +00:00
|
|
|
head 'git://git.concurrencykit.org/ck.git'
|
|
|
|
|
|
|
|
def install
|
|
|
|
system "./configure", "--prefix=#{prefix}"
|
2012-06-12 04:05:47 +00:00
|
|
|
system "make", "CC=#{ENV.cc}"
|
2011-07-16 05:12:08 +00:00
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|