homebrew-core/Formula/libntlm.rb

22 lines
611 B
Ruby
Raw Normal View History

require 'formula'
class Libntlm < Formula
homepage 'http://www.nongnu.org/libntlm/'
2013-12-01 01:26:26 +00:00
url 'http://www.nongnu.org/libntlm/releases/libntlm-1.4.tar.gz'
sha1 'b15c9ccbd3829154647b3f9d6594b1ffe4491b6f'
2014-07-03 21:00:24 +00:00
bottle do
cellar :any
2014-10-21 13:18:18 +00:00
revision 1
sha1 "7c5f98bf311289a1aa49c08a5d2fa23ffb3fcc30" => :yosemite
sha1 "550250645169374bf9275ff3e8c8f805560f3416" => :mavericks
sha1 "a417f1bd4b1403094dddc8406d1f390832dabf53" => :mountain_lion
2014-07-03 21:00:24 +00:00
end
def install
2013-12-01 01:26:26 +00:00
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make install"
end
end