homebrew-core/Formula/lynx.rb

20 lines
608 B
Ruby
Raw Normal View History

require 'formula'
2011-03-10 05:11:03 +00:00
class Lynx < Formula
2011-06-24 05:15:09 +00:00
url 'http://lynx.isc.org/release/lynx2.8.7.tar.bz2'
homepage 'http://lynx.isc.org/release/'
md5 'cb936aef812e4e463ab86cbbe14d4db9'
def install
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}",
"--mandir=#{man}",
"--disable-echo",
"--with-zlib",
"--with-bzlib",
"--with-ssl",
"--enable-ipv6"
system "make install"
end
end