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
17 lines
468 B
Ruby
17 lines
468 B
Ruby
require 'formula'
|
|
|
|
class W3m <Formula
|
|
url 'http://downloads.sourceforge.net/project/w3m/w3m/w3m-0.5.2/w3m-0.5.2.tar.gz'
|
|
homepage 'http://w3m.sourceforge.net/'
|
|
md5 'ba06992d3207666ed1bf2dcf7c72bf58'
|
|
|
|
depends_on 'bdw-gc'
|
|
|
|
def install
|
|
fails_with_llvm
|
|
system "./configure", "--disable-debug", "--disable-dependency-tracking",
|
|
"--prefix=#{prefix}",
|
|
"--disable-image"
|
|
system "make install"
|
|
end
|
|
end
|