2011-07-16 05:12:08 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Concurrencykit < Formula
|
|
|
|
homepage 'http://concurrencykit.org'
|
2014-07-31 12:53:41 +00:00
|
|
|
url 'http://concurrencykit.org/releases/ck-0.4.3.tar.gz'
|
|
|
|
sha1 '205d1c11e2b7eb30f5704953152775334098f2e3'
|
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-07-31 12:59:55 +00:00
|
|
|
sha1 "e6bc5b3cee4bfbbe493d33953d280d03a398661c" => :mavericks
|
|
|
|
sha1 "ff04b2b4ba7d4275f2cf13981f2bb7620e62fbd2" => :mountain_lion
|
|
|
|
sha1 "6fe202a825da5dd1254c5fc750c495c25661df44" => :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
|