22 lines
613 B
Ruby
22 lines
613 B
Ruby
require 'formula'
|
|
|
|
class Concurrencykit < Formula
|
|
homepage 'http://concurrencykit.org'
|
|
url 'http://concurrencykit.org/releases/ck-0.4.2.tar.gz'
|
|
sha1 '70c49d50345c915af2248e7f5223ecf74200dacb'
|
|
|
|
head 'https://github.com/concurrencykit/ck.git'
|
|
|
|
bottle do
|
|
cellar :any
|
|
sha1 "9d7092669ec91a020b06a1e5a5038af9d2888fff" => :mavericks
|
|
sha1 "27a762867fa388d36763292c53d3a795f63855ff" => :mountain_lion
|
|
sha1 "00473fc2ef6ba55498018637a2573972c36e2052" => :lion
|
|
end
|
|
|
|
def install
|
|
system "./configure", "--prefix=#{prefix}"
|
|
system "make", "CC=#{ENV.cc}"
|
|
system "make install"
|
|
end
|
|
end
|