2011-07-16 05:12:08 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Concurrencykit < Formula
|
|
|
|
homepage 'http://concurrencykit.org'
|
2014-09-02 11:40:02 +00:00
|
|
|
url 'http://concurrencykit.org/releases/ck-0.4.4.tar.gz'
|
|
|
|
sha1 'bfddebf5af1056ddab1345711e5836563131a252'
|
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-09-02 11:47:14 +00:00
|
|
|
sha1 "86056c5005d9d4d231d2b4603415ef3f9258afd7" => :mavericks
|
|
|
|
sha1 "a972444147a7621158474c867eca0def9da131ed" => :mountain_lion
|
|
|
|
sha1 "949f89c08cac441c9e2153a01237941fd45ec658" => :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
|