2011-01-04 23:51:45 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class CKermit < Formula
|
2011-07-05 20:25:15 +00:00
|
|
|
url 'ftp://kermit.columbia.edu/kermit/archives/cku300.tar.gz'
|
2011-01-04 23:51:45 +00:00
|
|
|
homepage 'http://www.columbia.edu/kermit/'
|
2011-07-05 20:25:15 +00:00
|
|
|
md5 'cde4676b0a31cdb3afa42e10fa81105f'
|
|
|
|
version '9.0'
|
2011-01-04 23:51:45 +00:00
|
|
|
|
|
|
|
def install
|
2011-07-05 20:25:15 +00:00
|
|
|
system "make macosx"
|
2011-01-04 23:51:45 +00:00
|
|
|
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
|