2011-06-19 21:27:39 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Ipv6calc < Formula
|
|
|
|
homepage 'http://www.deepspace6.net/projects/ipv6calc.html'
|
2012-06-16 11:18:53 +00:00
|
|
|
url 'ftp://ftp.deepspace6.net/pub/ds6/sources/ipv6calc/ipv6calc-0.93.1.tar.gz'
|
|
|
|
sha1 '8cd23ed0bee03d79c70662e64ab4c7aae1219439'
|
2011-06-19 21:27:39 +00:00
|
|
|
|
|
|
|
def install
|
2012-06-16 11:18:53 +00:00
|
|
|
# This needs --mandir, otherwise it tries to install to /share/man/man8.
|
2011-09-02 01:31:25 +00:00
|
|
|
system "./configure", "--prefix=#{prefix}", "--mandir=#{man}"
|
2011-06-19 21:27:39 +00:00
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|