aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
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