2011-07-16 05:12:08 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Concurrencykit < Formula
|
|
|
|
homepage 'http://concurrencykit.org'
|
2014-04-24 20:49:06 +00:00
|
|
|
url 'http://concurrencykit.org/releases/ck-0.4.2.tar.gz'
|
|
|
|
sha1 '70c49d50345c915af2248e7f5223ecf74200dacb'
|
2012-06-12 04:05:47 +00:00
|
|
|
|
2014-04-17 18:00:29 +00:00
|
|
|
head 'https://github.com/concurrencykit/ck.git'
|
2011-07-16 05:12:08 +00:00
|
|
|
|
2014-02-25 23:26:23 +00:00
|
|
|
bottle do
|
|
|
|
cellar :any
|
2014-04-24 21:01:59 +00:00
|
|
|
sha1 "9d7092669ec91a020b06a1e5a5038af9d2888fff" => :mavericks
|
|
|
|
sha1 "27a762867fa388d36763292c53d3a795f63855ff" => :mountain_lion
|
|
|
|
sha1 "00473fc2ef6ba55498018637a2573972c36e2052" => :lion
|
2014-02-25 23:26:23 +00:00
|
|
|
end
|
|
|
|
|
2011-07-16 05:12:08 +00:00
|
|
|
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
|