aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/libntlm.rb
blob: 593e2e12f6a0b43b9f59521babf7599229955e02 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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'

  bottle do
    cellar :any
    sha1 "8804ed8011884a460f8f6b0f6097623c31a68a9b" => :mavericks
    sha1 "8412db1ae3c69bdb3d96b144ef69af450637f5a5" => :mountain_lion
    sha1 "95872dc71ec6220794923681f4a364ba9f538bd7" => :lion
  end

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