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

class Ipv6calc < Formula
  homepage 'http://www.deepspace6.net/projects/ipv6calc.html'
  url 'ftp://ftp.deepspace6.net/pub/ds6/sources/ipv6calc/ipv6calc-0.94.1.tar.gz'
  sha1 'c36689ed84472bb39897167fea14529b06da4647'

  def install
    # This needs --mandir, otherwise it tries to install to /share/man/man8.
    system "./configure", "--prefix=#{prefix}", "--mandir=#{man}"
    system "make install"
  end
end