blob: fc3bd49c79734c2e5960d0f216ecbf61527081ae (
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
|