homebrew-core/Formula/links.rb
Frizlab c77023c148 links: add optional X11 support
Closes Homebrew/homebrew#18022.

Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2013-03-10 01:13:47 -06:00

23 lines
489 B
Ruby

require 'formula'
class Links < Formula
homepage 'http://links.twibright.com/'
url 'http://links.twibright.com/download/links-2.7.tar.gz'
sha1 'e0773f2b23397bcbd08d5a3145d94e446dfb4969'
depends_on :x11 => :optional
def install
args = %W[
--disable-debug
--disable-dependency-tracking
--prefix=#{prefix}
--mandir=#{man}
]
args << "--enable-graphics" if build.with? 'x11'
system "./configure", *args
system "make install"
end
end