diff options
| author | Brian Aker | 2013-04-04 12:33:58 -1000 | 
|---|---|---|
| committer | Adam Vandenberg | 2013-06-17 17:56:48 -0700 | 
| commit | 514b6c94dfc50210d78ff296dd5975af1fb5f034 (patch) | |
| tree | 9b0eb55a445b7ec9231f958dd86a1660497edf2e | |
| parent | f626432bcdcad6dfe95ff765c24ec3e1364c4b9e (diff) | |
| download | homebrew-514b6c94dfc50210d78ff296dd5975af1fb5f034.tar.bz2 | |
libbind 6.0
Closes #18982.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
| -rw-r--r-- | Library/Formula/libbind.rb | 13 | 
1 files changed, 13 insertions, 0 deletions
diff --git a/Library/Formula/libbind.rb b/Library/Formula/libbind.rb new file mode 100644 index 000000000..6d668dcc6 --- /dev/null +++ b/Library/Formula/libbind.rb @@ -0,0 +1,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  | 
