blob: 4279f477a09a913b9ee390db2c419213526f64a1 (
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.3.1.tar.gz'
sha1 'ca8fb6cf2a7562c012dffd579ac8f8ed051e6ed4'
head 'git://git.concurrencykit.org/ck.git'
def install
system "./configure", "--prefix=#{prefix}"
system "make", "CC=#{ENV.cc}"
system "make install"
end
end
|