2010-04-10 13:51:55 +00:00
|
|
|
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/'
|
2014-02-27 14:19:55 +00:00
|
|
|
url 'https://downloads.sourceforge.net/project/cclive/0.7/cclive-0.7.16.tar.xz'
|
2013-09-15 23:10:33 +00:00
|
|
|
sha1 '2bdee70f5e2026165ca444a306bb76fc5ede97b4'
|
2010-04-10 13:51:55 +00:00
|
|
|
|
2013-11-06 15:31:27 +00:00
|
|
|
conflicts_with 'clozure-cl', :because => 'both install a ccl binary'
|
|
|
|
|
2010-09-19 17:21:57 +00:00
|
|
|
depends_on 'pkg-config' => :build
|
2010-04-10 13:51:55 +00:00
|
|
|
depends_on 'quvi'
|
2011-11-26 07:36:52 +00:00
|
|
|
depends_on 'boost'
|
2013-02-09 03:23:07 +00:00
|
|
|
depends_on 'pcre'
|
2011-11-26 07:36:52 +00:00
|
|
|
|
2010-04-10 13:51:55 +00:00
|
|
|
def install
|
2011-11-26 07:36:52 +00:00
|
|
|
system "./configure", "--disable-dependency-tracking",
|
|
|
|
"--prefix=#{prefix}"
|
2010-04-10 13:51:55 +00:00
|
|
|
system "make install"
|
|
|
|
end
|
2010-05-30 09:46:41 +00:00
|
|
|
end
|