2010-09-23 13:57:17 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class IcarusVerilog < Formula
|
2012-02-21 04:28:51 +00:00
|
|
|
homepage 'http://iverilog.icarus.com/'
|
2013-05-07 02:52:25 +00:00
|
|
|
url 'ftp://icarus.com/pub/eda/verilog/v0.9/verilog-0.9.6.tar.gz'
|
|
|
|
sha1 'd81f586b801a2d897ba8c35971d660b960220ed4'
|
2012-07-10 16:36:42 +00:00
|
|
|
|
2010-09-23 13:57:17 +00:00
|
|
|
def install
|
2012-08-12 16:33:24 +00:00
|
|
|
# Fixes an assertion when XCode-4.4 tries to link with clang or llvm-gcc.
|
|
|
|
ENV['LD'] = MacOS.locate("ld")
|
2012-02-21 04:28:51 +00:00
|
|
|
system "./configure", "--prefix=#{prefix}"
|
2012-07-10 16:36:42 +00:00
|
|
|
# Separate steps, as install does not depend on compile properly
|
2012-08-12 16:33:24 +00:00
|
|
|
system 'make'
|
|
|
|
system 'make installdirs'
|
|
|
|
system 'make install'
|
2010-09-23 13:57:17 +00:00
|
|
|
end
|
|
|
|
end
|