aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBKrsta2010-08-07 02:28:43 +0200
committerAdam Vandenberg2010-08-08 11:38:17 -0700
commit4399886a385613f4d574e61f9930dac7555b59e9 (patch)
tree6da1dada59bb6007b3d18a4e539040e1ec64f721
parentfb0599ce8966ec794a0334297da4edceb967f12c (diff)
downloadhomebrew-4399886a385613f4d574e61f9930dac7555b59e9.tar.bz2
Added ttyrec
Signed-off-by: Adam Vandenberg <flangy@gmail.com> * Add man pages
-rw-r--r--Library/Formula/ttyrec.rb14
1 files changed, 14 insertions, 0 deletions
diff --git a/Library/Formula/ttyrec.rb b/Library/Formula/ttyrec.rb
new file mode 100644
index 000000000..d8524c327
--- /dev/null
+++ b/Library/Formula/ttyrec.rb
@@ -0,0 +1,14 @@
+require 'formula'
+
+class Ttyrec <Formula
+ url 'http://0xcc.net/ttyrec/ttyrec-1.0.8.tar.gz'
+ homepage 'http://0xcc.net/ttyrec/'
+ md5 'ee74158c6c55ae16327595c70369ef83'
+
+ def install
+ bin.mkpath
+ system "make"
+ bin.install %w[ ttytime ttyplay ttyrec ]
+ man1.install Dir["*.1"]
+ end
+end