aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/libbind.rb
blob: 6d668dcc6acc6d88191a6dbe6ac1770c2ce46900 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
require 'formula'

class Libbind < Formula
  homepage 'https://www.isc.org/software/libbind'
  url 'ftp://ftp.isc.org/isc/libbind/6.0/libbind-6.0.tar.gz'
  sha1 '4664646238cd3602df168da1e9bc9591d3f566b2'

  def install
    system "./configure", "--prefix=#{prefix}"
    system "make" # You need to call make, before you can call make install
    system "make install"
  end
end