blob: 9a0b5ba5881b0b1572a3c1e8d066737990611e9d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
  | 
require 'formula'
class Cdk < Formula
  homepage 'http://invisible-island.net/cdk/'
  url 'ftp://invisible-island.net/cdk/cdk-5.0-20140118.tgz'
  version '5.0.20140118'
  sha1 'd900e9e0d54a90701541d40ff7137507baf3b382'
  def install
    system "./configure", "--prefix=#{prefix}"
    system "make", "install"
  end
end
  |