blob: 6a4bd1b459709aceb1024fa9482513f46c93df88 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
require 'formula'
class Concurrencykit < Formula
homepage 'http://concurrencykit.org'
url 'http://concurrencykit.org/releases/ck-0.4.4.tar.gz'
sha1 'bfddebf5af1056ddab1345711e5836563131a252'
head 'https://github.com/concurrencykit/ck.git'
bottle do
cellar :any
sha1 "e6bc5b3cee4bfbbe493d33953d280d03a398661c" => :mavericks
sha1 "ff04b2b4ba7d4275f2cf13981f2bb7620e62fbd2" => :mountain_lion
sha1 "6fe202a825da5dd1254c5fc750c495c25661df44" => :lion
end
def install
system "./configure", "--prefix=#{prefix}"
system "make", "CC=#{ENV.cc}"
system "make install"
end
end
|