blob: 9f14cdd07f5a487559343e64956da6bf31886e04 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
  | 
require 'formula'
class Libntlm < Formula
  homepage 'http://www.nongnu.org/libntlm/'
  url 'http://www.nongnu.org/libntlm/releases/libntlm-1.4.tar.gz'
  sha1 'b15c9ccbd3829154647b3f9d6594b1ffe4491b6f'
  def install
    system "./configure", "--disable-dependency-tracking",
                          "--prefix=#{prefix}"
    system "make install"
  end
end
  |