blob: 3f6bd586f51754f49eaf56f3969010bd0d9269d9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
require 'formula'
class Concurrencykit < Formula
homepage 'http://concurrencykit.org'
url 'http://concurrencykit.org/releases/ck-0.2.16.tar.gz'
sha1 '1a7bb6e6ea9ce3850419511aed5c3b35a6add356'
head 'git://git.concurrencykit.org/ck.git'
def install
system "./configure", "--prefix=#{prefix}"
system "make", "CC=#{ENV.cc}"
system "make install"
end
end
|