85aff083b1
Lynx is a fully-featured World Wide Web (WWW) browser for users on Unix, VMS, and other platforms running cursor-addressable, character-cell terminals or emulators. That includes vt100 terminals, other character- cell displays, and vt100 emulators such as Kermit or Procomm running on PCs or Macs.
18 lines
545 B
Ruby
18 lines
545 B
Ruby
require 'brewkit'
|
|
|
|
class Lynx <Formula
|
|
url 'http://lynx.isc.org/release/lynx2.8.7.tar.bz2'
|
|
homepage 'http://lynx.isc.org/release/'
|
|
md5 '493af4c77ef6761e3f0157cd1be033a0'
|
|
|
|
def install
|
|
system "./configure", "--silent",
|
|
"--prefix=#{prefix}",
|
|
"--disable-debug",
|
|
"--disable-dependency-tracking",
|
|
"--disable-echo",
|
|
"--with-zlib",
|
|
"--with-bzlib"
|
|
system "make install"
|
|
end
|
|
end
|