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

class Morse < Formula
  homepage 'http://www.catb.org/~esr/morse/'
  url 'http://www.catb.org/~esr/morse/morse-2.5.tar.gz'
  sha1 'f3b607272e5dc84920e4d3a80d559df0e92ec54b'

  depends_on :x11

  def install
    system "make", "all", "DEVICE=X11"
    bin.install "morse"
    man1.install "morse.1"
  end
end