aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/lft.rb
blob: 4dc6bf5d1d4c56aeb2100c88db9bee874f52c434 (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.35.tar.gz'
  sha1 'b6c6fb51f423c5398ca649b2e8cbcbe597afff23'

  def install
    system "./configure", "--disable-debug", "--disable-dependency-tracking", "--prefix=#{prefix}"
    system "make install"
  end
end