blob: 58009dd1aaa9bc1891e066b5d02e10d1b574d6df (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
require 'formula'
class Concurrencykit < Formula
url 'http://concurrencykit.org/releases/ck-0.1.4.tar.gz'
homepage 'http://concurrencykit.org'
md5 '11f6f2145d12c48fd17845b39f492ceb'
head 'git://git.concurrencykit.org/ck.git'
def install
system "./configure", "--prefix=#{prefix}"
system "make install"
end
end
|