Added ttyrec

Signed-off-by: Adam Vandenberg <flangy@gmail.com>

* Add man pages
master
BKrsta 2010-08-07 02:28:43 +02:00 committed by Adam Vandenberg
parent 26a5c2abd9
commit d543089495
1 changed files with 14 additions and 0 deletions

14
Formula/ttyrec.rb Normal file
View File

@ -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