aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/jerm.rb
blob: 378bc1897ce90e7c9ddea22dfab0fce596805c38 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
require 'formula'

class Jerm < Formula
  url 'http://www.bsddiary.net/jerm/jerm-8096.tar.gz'
  version '0.8096'
  homepage 'http://www.bsddiary.net/jerm/'
  sha1 '09a301d9de423c44e60967f3f617a299427e356d'

  def install
    system "make all"
    bin.install %w{jerm tiocdtr}
    man1.install Dir["*.1"]
  end
end