homebrew-core/Formula/libntlm.rb

22 lines
611 B
Ruby

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
revision 1
sha1 "7c5f98bf311289a1aa49c08a5d2fa23ffb3fcc30" => :yosemite
sha1 "550250645169374bf9275ff3e8c8f805560f3416" => :mavericks
sha1 "a417f1bd4b1403094dddc8406d1f390832dabf53" => :mountain_lion
end
def install
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make install"
end
end