7bd947eb0b
* Use new "url" features * Use keg_only DSL * Use "skip_clean :all" DSL * Whitespace and style cleanups * Make bash invocations less silly * Use new man2-man8 helpers * Remove "FileUtils." since it is included in Formula * Use real names for deps instead of aliases * ENV.x11 now updates path, so remove that from individual brews
15 lines
336 B
Ruby
15 lines
336 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'
|
|
|
|
def install
|
|
fails_with_llvm
|
|
ENV.deparallelize
|
|
ENV.delete('LD')
|
|
system "./configure", "--prefix=#{prefix}"
|
|
system "make install"
|
|
end
|
|
end
|