aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/lynx.rb
blob: a7101e323953f71afca353f6e55cf7760ee679b4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
require 'formula'

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", "--prefix=#{prefix}", 
                          "--mandir=#{man}",
                          "--disable-debug", 
                          "--disable-dependency-tracking",
                          "--disable-echo",
                          "--with-zlib",
                          "--with-bzlib",
                          "--with-ssl",
                          "--enable-ipv6"
    system "make install"
  end
end