aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/links.rb
blob: 084e4b8c372f809dba7c56c04f9744c21eca19ed (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
require 'formula'

class Links <Formula
  url 'http://links.twibright.com/download/links-2.2.tar.gz'
  homepage 'http://links.twibright.com/'
  md5 'c9937f9ed0061f264973182f871fb667'

  def install
    system "./configure", "--disable-debug", "--disable-dependency-tracking",
                          "--prefix=#{prefix}",
                          "--mandir=#{man}"
    system "make install"
  end
end