aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/cclive.rb
blob: 807dc647bed62d12f890e1efeb72b28491d03ba5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
require 'formula'

class Cclive < Formula
  homepage 'http://cclive.sourceforge.net/'
  url 'http://downloads.sourceforge.net/project/cclive/0.7/cclive-0.7.16.tar.xz'
  sha1 '2bdee70f5e2026165ca444a306bb76fc5ede97b4'

  conflicts_with 'clozure-cl', :because => 'both install a ccl binary'

  depends_on 'pkg-config' => :build
  depends_on 'xz' => :build
  depends_on 'quvi'
  depends_on 'boost'
  depends_on 'pcre'

  def install
    system "./configure", "--disable-dependency-tracking",
                          "--prefix=#{prefix}"
    system "make install"
  end
end