diff options
| -rw-r--r-- | Library/Formula/ttyrec.rb | 14 |
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 |
