homebrew-core/Formula/c-kermit.rb
Nibbles 2bits 53572eb663 c-kermit 9.0.302
Update kermit to cku302, which according to the source files
is the Unix version 9.0.302.
Change version numbering to add the 302 suffix.
Use the new kermitproject.org url and homepage.
Compiles and runs without error on Snow Leopard using XCode-4.0.2,
llvm-2335.9 and clang-2.0.139.

Closes Homebrew/homebrew#8487.

Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2011-11-07 14:11:17 -06:00

18 lines
521 B
Ruby

require 'formula'
class CKermit < Formula
url 'http://www.kermitproject.org/ftp/kermit/archives/cku302.tar.gz'
homepage 'http://www.kermitproject.org/'
md5 'eac4dbf18b45775e4cdee5a7c74762b0'
version '9.0.302'
def install
system "make macosx"
man1.mkpath
# The makefile adds /man to the end of manroot when running install
# hence we pass share here, not man. If we don't pass anything it
# uses {prefix}/man
system "make", "prefix=#{prefix}", "manroot=#{share}", "install"
end
end