homebrew-core/Formula/libbind.rb

21 lines
683 B
Ruby
Raw Normal View History

class Libbind < Formula
desc "Original resolver library from ISC"
homepage "https://www.isc.org/software/libbind"
url "ftp://ftp.isc.org/isc/libbind/6.0/libbind-6.0.tar.gz"
sha256 "b98b6aa6e7c403f5a6522ffb68325785a87ea8b13377ada8ba87953a3e8cb29d"
2014-07-03 17:36:37 +00:00
bottle do
cellar :any
2014-10-21 08:58:32 +00:00
revision 1
sha1 "30bbab51056974792200006da34d57aa8285c919" => :yosemite
sha1 "aa5d280d0970c79875c203279c4dcec9d3a7b226" => :mavericks
sha1 "aa9b1682a17d2c1df60af9240e623f6d37bd47dd" => :mountain_lion
2014-07-03 17:36:37 +00:00
end
def install
system "./configure", "--prefix=#{prefix}"
system "make" # You need to call make, before you can call make install
system "make", "install"
end
end