d87063d32f
These dependencies are automatically detected from the URL, so declaring them is redundant. If these formulae ever get a head or devel spec, then explicit xz deps would need to be re-scoped appropriately. Thus we should remove them.
20 lines
545 B
Ruby
20 lines
545 B
Ruby
require 'formula'
|
|
|
|
class Cclive < Formula
|
|
homepage 'http://cclive.sourceforge.net/'
|
|
url 'https://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 'quvi'
|
|
depends_on 'boost'
|
|
depends_on 'pcre'
|
|
|
|
def install
|
|
system "./configure", "--disable-dependency-tracking",
|
|
"--prefix=#{prefix}"
|
|
system "make install"
|
|
end
|
|
end
|