New formula: morse

A morse training program.

Closes Homebrew/homebrew#19135.

Signed-off-by: Jack Nagel <jacknagel@gmail.com>
master
Jaime Marquínez Ferrándiz 2013-04-11 19:41:37 +02:00 committed by Jack Nagel
parent f7e07dd273
commit a67b7c86dd
1 changed files with 15 additions and 0 deletions

15
Formula/morse.rb Normal file
View File

@ -0,0 +1,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