blob: b9075e8e75d4c41e0affda27417015556a8a882e (
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/'
sha1 '645f1e2a1ac4b2a32ad314711fb3da014ce9684d'
def install
bin.mkpath
system "make"
bin.install %w[ ttytime ttyplay ttyrec ]
man1.install Dir["*.1"]
end
end
|