aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorJaime Marquínez Ferrándiz2013-04-11 19:41:37 +0200
committerJack Nagel2013-05-16 16:03:03 -0500
commit77dcccaf274e1fe07c8aa555837d322266844001 (patch)
treee29da3ae50cb0c57322e2e04250e8cf460fbff55 /Library
parenta64855988739198b9c0138264f6b84cfa2268e7c (diff)
downloadhomebrew-77dcccaf274e1fe07c8aa555837d322266844001.tar.bz2
New formula: morse
A morse training program. Closes #19135. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/morse.rb15
1 files changed, 15 insertions, 0 deletions
diff --git a/Library/Formula/morse.rb b/Library/Formula/morse.rb
new file mode 100644
index 000000000..26ffef492
--- /dev/null
+++ b/Library/Formula/morse.rb
@@ -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