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