homebrew-core/Formula/cclive.rb

22 lines
572 B
Ruby
Raw Normal View History

require 'formula'
2011-03-10 05:11:03 +00:00
class Cclive < Formula
2011-11-26 07:36:52 +00:00
homepage 'http://cclive.sourceforge.net/'
url 'http://downloads.sourceforge.net/project/cclive/0.7/cclive-0.7.16.tar.xz'
sha1 '2bdee70f5e2026165ca444a306bb76fc5ede97b4'
2013-11-06 15:31:27 +00:00
conflicts_with 'clozure-cl', :because => 'both install a ccl binary'
depends_on 'pkg-config' => :build
2013-02-03 20:29:01 +00:00
depends_on 'xz' => :build
depends_on 'quvi'
2011-11-26 07:36:52 +00:00
depends_on 'boost'
depends_on 'pcre'
2011-11-26 07:36:52 +00:00
def install
2011-11-26 07:36:52 +00:00
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make install"
end
2010-05-30 09:46:41 +00:00
end