2013-04-04 22:33:58 +00:00
|
|
|
class Libbind < Formula
|
2015-05-19 00:00:59 +00:00
|
|
|
desc "Original resolver library from ISC"
|
2015-08-03 12:55:31 +00:00
|
|
|
homepage "https://www.isc.org/software/libbind"
|
|
|
|
url "ftp://ftp.isc.org/isc/libbind/6.0/libbind-6.0.tar.gz"
|
|
|
|
sha256 "b98b6aa6e7c403f5a6522ffb68325785a87ea8b13377ada8ba87953a3e8cb29d"
|
2013-04-04 22:33:58 +00:00
|
|
|
|
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
|
|
|
|
|
2013-04-04 22:33:58 +00:00
|
|
|
def install
|
|
|
|
system "./configure", "--prefix=#{prefix}"
|
|
|
|
system "make" # You need to call make, before you can call make install
|
2015-08-03 12:55:31 +00:00
|
|
|
system "make", "install"
|
2013-04-04 22:33:58 +00:00
|
|
|
end
|
|
|
|
end
|