diff options
| author | BKrsta | 2010-08-07 02:28:43 +0200 |
|---|---|---|
| committer | Adam Vandenberg | 2010-08-08 11:38:17 -0700 |
| commit | 4399886a385613f4d574e61f9930dac7555b59e9 (patch) | |
| tree | 6da1dada59bb6007b3d18a4e539040e1ec64f721 | |
| parent | fb0599ce8966ec794a0334297da4edceb967f12c (diff) | |
| download | homebrew-4399886a385613f4d574e61f9930dac7555b59e9.tar.bz2 | |
Added ttyrec
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
* Add man pages
| -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 |
