blob: def6ad0013c1f829745f6fefa506fff7f0001972 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
require 'formula'
class Links < Formula
homepage 'http://links.twibright.com/'
url 'http://links.twibright.com/download/links-2.7.tar.gz'
sha1 'e0773f2b23397bcbd08d5a3145d94e446dfb4969'
def install
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}",
"--mandir=#{man}"
system "make install"
end
end
|