homebrew-core/Formula/elinks.rb

20 lines
462 B
Ruby
Raw Normal View History

require 'formula'
2009-08-29 17:22:57 +00:00
2011-03-10 05:11:03 +00:00
class Elinks < Formula
homepage 'http://elinks.or.cz/'
url 'http://elinks.or.cz/download/elinks-0.11.7.tar.bz2'
md5 'fcd087a6d2415cd4c6fd1db53dceb646'
2009-08-29 17:22:57 +00:00
head 'http://elinks.cz/elinks.git', :using => :git
2011-03-21 21:24:22 +00:00
fails_with_llvm
2009-08-29 17:22:57 +00:00
def install
ENV.deparallelize
2009-10-02 20:40:32 +00:00
ENV.delete('LD')
system "./autogen.sh" if ARGV.build_head?
2010-10-17 00:54:53 +00:00
system "./configure", "--prefix=#{prefix}", "--without-spidermonkey"
2009-08-29 17:22:57 +00:00
system "make install"
end
end