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

class Lynx < Formula
  homepage 'http://lynx.isc.org/release/'
  url 'http://lynx.isc.org/current/lynx2.8.8rel.2.tar.bz2'
  version '2.8.8rel.2'
  sha1 '65bbf95627c88723bbb5880155e5fe01c2753d0c'

  def install
    system "./configure", "--disable-debug", "--disable-dependency-tracking",
                          "--prefix=#{prefix}",
                          "--mandir=#{man}",
                          "--disable-echo",
                          "--enable-default-colors",
                          "--with-zlib",
                          "--with-bzlib",
                          "--with-ssl=#{MacOS.sdk_path}/usr",
                          "--enable-ipv6"
    system "make install"
  end

  test do
    system "#{bin}/lynx", '-dump', 'http://checkip.dyndns.org'
  end
end