aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/c-kermit.rb
blob: 15d1678d753bc0b2851c41744f0d235ce6e0e260 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
require 'formula'

class CKermit < Formula
  homepage 'http://www.kermitproject.org/'
  url 'http://www.kermitproject.org/ftp/kermit/archives/cku302.tar.gz'
  version '9.0.302'
  sha1 'd04c8b5600bc0bb0f163d294881f7a5a0d4395b5'

  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