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