95884bae22
Closes Homebrew/homebrew#42407. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
20 lines
683 B
Ruby
20 lines
683 B
Ruby
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"
|
|
|
|
bottle do
|
|
cellar :any
|
|
revision 1
|
|
sha1 "30bbab51056974792200006da34d57aa8285c919" => :yosemite
|
|
sha1 "aa5d280d0970c79875c203279c4dcec9d3a7b226" => :mavericks
|
|
sha1 "aa9b1682a17d2c1df60af9240e623f6d37bd47dd" => :mountain_lion
|
|
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
|