2011-07-16 05:12:08 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Concurrencykit < Formula
|
|
|
|
homepage 'http://concurrencykit.org'
|
2012-12-01 04:31:44 +00:00
|
|
|
url 'http://concurrencykit.org/releases/ck-0.2.12.tar.gz'
|
|
|
|
sha1 '538638f3233b77c57efcfe8ad226f6098be9a0b2'
|
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
|