blob: 8ac7667c47bddc02b2a56e472c5a9450987b32c1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
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
|