blob: d8524c327ee836f00d2d961f8732463b16b2741b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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
|