6d5730fa2c
Not sure how I failed so badly at logic. This should be rewritten so that the build info has a tested MacOS version too. However it seems unlikely that the same LLVM versions on different platforms would have different compile errors. So we'll risk it, and it'll be informative for us too.
19 lines
477 B
Ruby
19 lines
477 B
Ruby
require 'formula'
|
|
|
|
class Elinks < Formula
|
|
homepage 'http://elinks.or.cz/'
|
|
url 'http://elinks.or.cz/download/elinks-0.11.7.tar.bz2'
|
|
md5 'fcd087a6d2415cd4c6fd1db53dceb646'
|
|
|
|
head 'http://elinks.cz/elinks.git', :using => :git
|
|
|
|
fails_with_llvm :build => 2326
|
|
|
|
def install
|
|
ENV.deparallelize
|
|
ENV.delete('LD')
|
|
system "./autogen.sh" if ARGV.build_head?
|
|
system "./configure", "--prefix=#{prefix}", "--without-spidermonkey"
|
|
system "make install"
|
|
end
|
|
end
|