blob: 1d6502cc07ab49fb219a028539f80abbeb27cdf9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
require 'formula'
class Lft < Formula
homepage 'http://pwhois.org/lft/'
url 'http://pwhois.org/dl/index.who?file=lft-3.36.tar.gz'
sha1 'f70a35b8340c1e0ff2a3435ec982e16bca3a0413'
def install
system "./configure", "--disable-debug", "--disable-dependency-tracking", "--prefix=#{prefix}"
system "make install"
end
end
|