homebrew-core/Formula/ipv6calc.rb
nibbles 2bits e2781156b0 ipv6calc 0.93.1
Upgrade ipv6calc to version 0.93.1.
Tested on Lion with cland and llvm from XCode-4.3.3.

Closes Homebrew/homebrew#12876.

Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2012-06-16 10:45:31 -05:00

13 lines
431 B
Ruby

require 'formula'
class Ipv6calc < Formula
homepage 'http://www.deepspace6.net/projects/ipv6calc.html'
url 'ftp://ftp.deepspace6.net/pub/ds6/sources/ipv6calc/ipv6calc-0.93.1.tar.gz'
sha1 '8cd23ed0bee03d79c70662e64ab4c7aae1219439'
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